var enter_taste = 0;
function dtm_search(id) {
	if ( enter_taste != 1 ) {
		document.getElementById("search_id").value = id;
	} else {
		enter_taste = 0;
	}
	document.forms.dtm_search_form_1.submit();
}
function dtm_search_enter(id) {
	document.getElementById("search_id").value = id;
	enter_taste = 1;
	document.forms.dtm_search_form_1.submit();
}

var IE = null;
if (window.navigator.appName == "Microsoft Internet Explorer") {
	if (document.documentMode) {  
		// Internet Exploter 8
		IE = document.documentMode; // documentMode = 8
	}
	else {
		// Internet Explorer 5-7
		IE = 5; //setzt sozusagen den Quirks-Modus
		if (document.compatMode) {
			if (document.compatMode == "CSS1Compat") {
				IE = 7; // IE7 Modus
			}
		}
	}
}

document.write('<div style="font-size:12px; font-family:Arial; width:156px; color:#676767;">');
document.write('	<form action="http://www.detemedien.de/suche/suche.php" method="get" name="dtm_search_form_1" target="_blank">');
document.write('	<input type="hidden" id="search_id" name="search_id" value="0"/>');
document.write('	<input type="hidden" id="source" name="source" value="11833">');
document.write('	<div style="width:156px;">');
document.write('		<input type="text" id="search_what" name="what" style="width:156px; background-color:white; border:black 1px solid; font-family: Arial; font-size: 10px; color: black;" onkeypress="if(event.keyCode==\'13\') dtm_search_enter(0);" />');
document.write('		<span style="color:#666666; font-size: 11px;"><strong>Was/Wen?</strong></span>');
document.write('	</div>');
document.write('	<div style="width:156px;">');
document.write('		<input type="text" id="search_where" name="where" style="width:156px; background-color:white; border:black 1px solid; font-family: Arial; font-size: 10px; color: black; margin-top:10px;" onkeypress="if(event.keyCode==\'13\') dtm_search_enter(0);" />');
document.write('		<span style="color:#666666; font-size: 11px;"><strong>Wo?</strong></span>');
document.write('	</div>');
document.write('	<div style="width:156px; text-align: center;">');
document.write('		<strong style="color:#666666; font-size:12px; display:block; margin-bottom:5px;">suchen in</strong>');
document.write('	</div>');
document.write('	<div style="width:156px;">');
document.write('		<div style="float: left; margin: 2px 0px 2px 0px;"><a href="javascript:dtm_search(1); void(0);"><img src="http://www.detemedien.de/suche/images/suche_tb.png" alt="DasTelefonbuch" style="border:0px;" /></a></div>');
document.write('		<div style="float: right; margin: 2px 0px 2px 0px;"><a href="javascript:dtm_search(2); void(0);"><img src="http://www.detemedien.de/suche/images/suche_oetb.png" alt="DasOertliche" style="border:0px;" /></a></div>');
document.write('	</div>');
document.write('	<div style="width:156px;">');
document.write('		<div style="float: left; margin: 2px 0px 2px 0px;"><a href="javascript:dtm_search(3); void(0);"><img src="http://www.detemedien.de/suche/images/suche_gs.png" alt="GelbeSeiten" style="border:0px;" /></a></div>');
document.write('		<div style="float: right; margin: 2px 0px 2px 0px;"><a href="javascript:dtm_search(4); void(0);"><img src="http://www.detemedien.de/suche/images/suche_suchen.png" alt="suchen.de" style="border:0px;" /></a></div>');
document.write('	</div>');
document.write('	</form>');
document.write('</div>');

