/**
 *
 * Die-Bibel.de Bibelstellen-Linkausgabe
 * Copyright 2007 Deutsche Bibelgesellschaft, Stuttgart
 * 
 **/

function bibelstelle(stelle,linktext) {
	if (stelle != '') {
		if (linktext == '') linktext = stelle;
		stelle = stelle.replace(/ä/, 'ae');
		stelle = stelle.replace(/ü/, 'ue');
		stelle = stelle.replace(/ö/, 'oe');
		stelle = escape(stelle);
	 	document.write('<a href="http://www.die-bibel.de/bibelstelle/' + stelle + '" target="FEopenLink" onclick="vHWin=window.open(\'http://www.die-bibel.de/bibelstelle/' + stelle + '\',\'FEopenLink\',\'width=300,height=500\');vHWin.focus();return false;" class="dbg-bibellink">' + linktext + '</a>');	
	}
}

function bibeltext(stelle,linktext) {
	if (stelle != '') {
		if (linktext == '') linktext = stelle;
		stelle = stelle.replace(/ä/, 'ae');
		stelle = stelle.replace(/ü/, 'ue');
		stelle = stelle.replace(/ö/, 'oe');
		stelle = escape(stelle);
	 	document.write('<a href="http://www.die-bibel.de/bibelstelle/' + stelle + '" target="FEopenLink" onclick="vHWin=window.open(\'http://www.die-bibel.de/bibeltext/' + stelle + '\',\'FEopenLink\',\'width=300,height=500\');vHWin.focus();return false;" class="dbg-bibellink">' + linktext + '</a>');	
	}
}
