function BilderVorladen(){
    document.Vorladen = new Array();
    if(document.images)    {
        for(var i = 0; i < BilderVorladen.arguments.length; i++){
            document.Vorladen[i] = new Image();
            document.Vorladen[i].src = BilderVorladen.arguments[i];
        }
    }
}

function openBrWindow(URL){
	window.open(URL,'bigsize','toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,screenX=0,screenY=0,top=0,left=0,width=1,height=1');
}

function resizeWindow(window_width,window_height){
	window.resizeTo(window_width,window_height);
}

function openContact(){
	window.open('kontakt.php','kontakt_popup','toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=no,screenX=0,screenY=0,top=0,left=0,width=500,height=300');
}

function validator_kontakt(theform){
	if(theform.name.value==""){
		alert("Bitte tragen Sie Ihren Namen ein.");
		theform.name.focus();
		return (false);
	}
	if(theform.email.value.indexOf('@')==-1 || theform.email.value.indexOf('.')==-1){
		alert("Die E-Mail-Adresse ist nicht korrekt.");
		theform.email.focus();
		return (false);
	}
	if(theform.comment.value==""){
		alert("Sie haben keinen Nachrichtentext eingegeben!");
		theform.comment.focus();
		return (false);
	}
	return (true);
}
