// Mouse over functie in het hoofdmenu
function imgover(imgname){
	imgname.src = "../images/on.jpg"
}
function imgout(imgname){
	imgname.src = "../images/off.jpg"
}

// Popup functie voor afbeeldingen
function image(bestand,b,h) {
	var loc="images/"+bestand+".jpg";
	var parameters="toolbar=no,scrollbars=no,location=no,status=no,menubar=no,resizable=yes,top=0,left=0,width="+b+",height="+h;
	foto = window.open("","pic",parameters);
	foto.moveTo((screen.availWidth-b)/2, (screen.availHeight-h)/2);
	foto.document.write("<html><head><title>Loonbedrijf en Gewasverzorgingsbedrijf Jan Nas</title></head>");
	foto.document.write("<style>body { margin: 0px;overflow: hidden; }</style>");
	foto.document.write("<body onBlur='self.close();' onLoad='self.focus();'><a href='javascript:window.close();' title='Klik om te sluiten'><img src='"+loc+"' border='0' height="+h+"></a></body></html>");
	foto.document.close();
}

// Popup functie voor certificaten
function certificaat(bestand,b,h) {
	var loc="../certificaat/"+bestand+".jpg";
	var parameters="toolbar=no,scrollbars=no,location=no,status=no,menubar=no,resizable=yes,top=0,left=0,width="+b+",height="+h;
	foto = window.open("","pic",parameters);
	foto.moveTo((screen.availWidth-b)/2, (screen.availHeight-h)/2);
	foto.document.write("<html><head><title>Loonbedrijf en Gewasverzorgingsbedrijf Jan Nas</title></head>");
	foto.document.write("<style>body { margin: 0px;overflow: hidden; }</style>");
	foto.document.write("<body onBlur='self.close();' onLoad='self.focus();'><a href='javascript:window.close();' title='Klik om te sluiten'><img src='"+loc+"' border='0' height="+h+"></a></body></html>");
	foto.document.close();
}
