function check_form(){
		if(document.contact.name.value==""){
			alert("Geben Sie bitte Ihren Namen ein!");
			document.contact.name.focus();
			return false;
		}
		
		if(document.contact.kommentar.value==""){
			alert("Geben Sie bitte Ihre Nachricht ein!");
			document.contact.kommentar.focus();
			return false;
		}

	}


	function popup(content){
	
 nw=window.open("content/pix.php?image="+content,"picture","width=400, height=300");
nw.focus();

	}
	