function tageszeitung_chkplz(plzval){
	if(plzval.length != 5){
		if(isNaN(plzval) == false){
			alert('Bitte geben Sie eine 5-stellige Zahl ein');
		}else{
			alert('Bitte geben Sie eine 5-stellige Postleitzahl ein');
		}
		return false;
	}
}
function tageszeitung_suche2(link1,link2){
	if(link2) { 
		document.writeln('<form name="plzsuche" method="GET" action="' + link1 + '" onsubmit="return tageszeitung_chkplz(this.plz.value);" target="_blank">');
	}else{
		document.writeln('<form name="plzsuche" method="POST" action="' + link1 + '" onsubmit="return tageszeitung_chkplz(this.plz.value);" target="_blank">');
	}	if(link2) { document.writeln('<input type="hidden" name="' + link2 + '" value="http://www.tageszeitung.de/?pid=700100">'); }
	document.writeln('<nobr><input name="plz" type="text" id="plz" size="15" maxlength="5" value="PLZ" onFocus="this.value=\'\';">&nbsp;');
	document.writeln('<input type="submit" name="Submit" value="Suchen"></nobr>');
	document.writeln('<input type="hidden" name="site" value="tz_suche">');
	document.writeln('<input type="hidden" name="tab" value="new">');
	document.writeln('</form>');
}