
function link_oeffnen(linkstr)
	{
		if(linkstr.substr(0,4)=="www.") {
			linkstr="http://"+linkstr	
		}
		if(linkstr.substr(0,5)=="http:") {
			window.open(linkstr,"","");
		}else{
			document.location.href=linkstr;
		}
	}

function wetter_zeigen() {
	if(document.forms.wetter.PLZ.options[0].selected==false) {
		document.forms.wetter.submit();
	}
	else {
		alert('Bitte wählen Sie den gewünschten Ort!');
	}	
}


function big_img(image){
	window.open("/include/big_img.php?image="+image+"",'Image','width=500,height=500');
}


