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_suche1(link1, link2){
	document.writeln('<table width="202" height="122" border="0" cellpadding="0" cellspacing="0" background="http://www.leserservice-media.de/leserservice/affiliate/gfx/tzsuche/tz_background.gif">');
	document.writeln('<tr><td height="80">&nbsp;</td></tr><tr>');
	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">');
	}	document.writeln('<td height="42" align="left" valign="top">');
	if(link2) { document.writeln('<input type="hidden" name="' + link2 + '" value="http://www.tageszeitung.de/?pid=700100">'); }
	document.writeln('&nbsp;&nbsp;<input style="font-size:12px;" name="plz" type="text" id="plz" size="10" value="PLZ" maxlength="5" onfocus="this.value=\'\';"><br/>');
	document.writeln('&nbsp;&nbsp;<input style="font-size:12px;" type="submit" name="Submit" value="Suchen">');
	document.writeln('<input type="hidden" name="site" value="tz_suche">');
	document.writeln('<input type="hidden" name="tab" value="new"></td>');
	document.writeln('</form></tr></table>');
}