function openwindow(pic,wid,hei){
	picture = window.open("","picturewin","width="+wid+",height="+hei);
	var towrite = "";
	towrite = "<html><head><title>"+pic+"</title></head><body><div onclick='self.close()' style='position:absolute;top:0px;left:0px;'>";
	towrite += "<img src='"+pic+"' alt='Klik om te sluiten' />";
	towrite += "</div></body></html>";
	picture.document.write(towrite);
}

function openclose(id){
	if(document.getElementById(id).style.display=='block'){
		document.getElementById(id).style.display='none';
	}else{
		document.getElementById(id).style.display='block';
	}
}
