/* Popup erzeugen */
function bibelPopup(frm) {
	stelle = frm.wdg_input.value;
	stelle = stelle.replace(/ä/, 'ae');
	stelle = stelle.replace(/ü/, 'ue');
	stelle = escape(stelle);
	uebs = frm.wdg_select.value;
	adresse = 'http://www.die-bibel.de/bibelstelle/'+stelle+'|'+uebs;
	window.open(adresse,'FEopenLink','width=300,height=500');
}


/* Ausgabe Widget */

function bibelwidgetLoad(widgetWidth, widgetColor) {
	
	// absoluter Path
	var base = 'http://www.die-bibel.de/widgets/bibel/';
	
	// Breite
	if((widgetWidth <= 199) || !widgetWidth) {
		widgetWidth = 200;
	}
	
	// Farbe
	var col_array = new Array();
	col_array[0] = new Array('_blue','#7B95C4');
	col_array[1] = new Array('_grey','#2565bd');
	var col = col_array[widgetColor];
	
	document.write('<div id="wdg_wrap" style="height:174px;width:'+widgetWidth+'px;font-family:Verdana,Sans-Serif;font-size:11px;">\n');
	document.write('	<div id="wdg_left" style="float:left;width:8px;"><img src="'+base+'_gfx'+col[0]+'/hintergrund_links.gif" alt=""></div>\n');
	document.write('	<div id="wdg_main" style="float:left;background: transparent url('+base+'_gfx'+col[0]+'/background.gif) repeat-x top left;">\n');
	document.write('		<div id="wdg_content" style="float:left;height:178px;width:'+(widgetWidth-16)+'px;background: transparent url('+base+'_gfx'+col[0]+'/hintergrund_mitte.gif) no-repeat top left;">\n');
	document.write('			<div id="wdg_link" style="float:left;height:61px;width:'+(widgetWidth-16)+'px;cursor:pointer;" onclick="javascript:window.open(\'http://www.die-bibel.de\',\'FEopenLink\',\'\')"></div>');
	document.write('			<h1 style="float:left; margin:11px 0 11px 0;padding:0;text-align:left;color:'+col[1]+';font-size:9.6px;font-weight:normal;text-transform:uppercase;">Bibelstelle aufschlagen</h1>\n');
	document.write('			<form id="bmshortcutform" style="margin:0; padding:0;" action="javascript:bibelPopup(document.getElementById(\'bmshortcutform\'));" method="post">\n');
	document.write('				<input style="font-size:11px;color:#463C3B;border:1px solid '+col[1]+';padding:2px;width:'+(widgetWidth-60)+'px; " class="bm-shortcut-input" type="text" value="" name="wdg_input" maxlength="100"/>\n');
	document.write('				<a class="bm-shortcut-submit" style="text-decoration:none;color:'+col[1]+';" href="javascript:bibelPopup(document.getElementById(\'bmshortcutform\'));">&raquo; Los</a>\n');
	document.write('				<select class="bm-shortcut-input" style="font-size:11px;color:#463C3B;border:1px solid '+col[1]+'; padding:2px; width:'+(widgetWidth-20)+'px; margin:11px 0 0 0;" name="wdg_select">\n');
	document.write('					<option selected="" value="LU">Luther-Bibel 1984</option>\n');
	document.write('					<option value="GNB">Gute Nachricht Bibel</option>\n');
	document.write('					<option value="MNG">Menge-Bibel</option>\n');
	document.write('					<option value="EUE">Einheitsübersetzung</option>\n');
	document.write('					<option value="ZUB">Z&uuml;rcher Bibel</option>\n');
	document.write('					<option value="ELB">Elberfelder Bibel</option>\n');
	document.write('					<option value="NGUE">Neue Genfer &Uuml;bers.</option>\n');
	document.write('					<option value="NLB">Neues Leben</option>\n');
	document.write('					<option value="SCHL">Schlachter-Bibel</option>\n');
	document.write('					<option value="KJV">Englische Bibel (KJV)</option>\n');
	document.write('				</select>\n');
	document.write('			</form>\n');
	
	document.write('		</div>\n');
	document.write('	</div>\n');
	document.write('	<div id="wdg_right" style="float:left;width:8px;"><img src="'+base+'_gfx'+col[0]+'/hintergrund_rechts.gif" alt=""></div>\n');
	document.write('</div>\n');
}