// JavaScript Document
function checkKontakt(){
   
    if(document.kontakt.firstname.value == ""){
        alert("Check First Name.");
        return false;
    }
    if(document.kontakt.lastname.value == ""){
        alert("Check Last Name.");
        return false;
    }
    if(document.kontakt.country.value == ""){
        alert("Check Country.");
        return false;
    }
    if(document.kontakt.email.value == ""){
        alert("Check E-Mail.");
        return false;
    }
    if(document.kontakt.subject.value == ""){
        alert("Check Subject.");
        return false;
    }
    if(document.kontakt.message.value == ""){
        alert("Check Message.");
        return false;
    }      
    return true;
}

function closepopup(){
  if (!fenster)
    return;
  if (fenster.closed)
    return;
  fenster.close();
}

function popup(closeifopen, width, height, resizable, positiontop, positionleft){
	if (closeifopen == true){
		closepopup();
	}
	
	fenster = window.open("","fenster", "'toolbar=0,location=0,statusbar=0,menubar=0,resizable="+resizable+",width="+width+",height="+height+",top="+positiontop+",left="+positionleft+"'");
	fenster.focus();
}

function galleryZoom(galleryname, number){
	wid = 645;
	hei = 498;
	resizable = false;
	positiontop = 100;
	positionleft = 100;
	
	gzoom = window.open("mods/gallery.php?galleryname="+galleryname+"&number="+number+"","gzoom", "'toolbar=0,location=0,statusbar=0,menubar=0,resizable="+resizable+",height="+hei+",width="+wid+",top="+positiontop+",left="+positionleft+"'");
	gzoom.focus();
}
function galleryZoom2007(galleryname, number){
	wid = 645;
	hei = 498;
	resizable = false;
	positiontop = 100;
	positionleft = 100;
	
	gzoom = window.open("mods/gallery2007.php?galleryname="+galleryname+"&number="+number+"","gzoom", "'toolbar=0,location=0,statusbar=0,menubar=0,resizable="+resizable+",height="+hei+",width="+wid+",top="+positiontop+",left="+positionleft+"'");
	gzoom.focus();
}


