  // improved displayImage function for Netscape 3+ and IE 4+
var FotoShow = null;
	  
function displayImage(picName, windowName, windowWidth, windowHeight){
 
  var winHandle = window.open("" ,windowName,"toolbar=no,scrollbars=no,resizable=no,width="+(parseInt(windowWidth)+24)+",height="+(parseInt(windowHeight)+30)+",status=0");
  if(winHandle != null){
	var htmlString = "<html><head><title>"+windowName+"<\/title>";
	htmlString += '<link rel="stylesheet" type="text/css" href="../../styles/bretsite.css"><\/head>';  
	htmlString += '<body bgcolor="#FFF8DF" background="../../images/bgpages.jpg" onClick="window.close();">';
	htmlString += '<center><table border=0 cellpadding=0 cellspacing=0>';
	htmlString += '<tr><td width='+windowWidth+' height='+windowHeight+' background="'+picName+'">&nbsp;<\/td><\/tr>';                          
// hier de foto centreren op pagina met knop eronder

	htmlString += '<tr><td align="center"> ';
	htmlString += '<a href="#" CLASS="List">&nbsp;Sluiten (Close)&nbsp;<\/a>';
	htmlString += '<\/td><\/tr><\/table><\/center><\/body><\/html>';
	winHandle.document.open();
	winHandle.document.write(htmlString);
	winHandle.document.close();
    }	
  if(winHandle != null) winHandle.focus(); 		//brings window to top
  return winHandle;
  };
  
function winClose(){   			 // close all open pop-up windows   
  if(FotoShow != null) {FotoShow.close();} 
  };

	  
function doNothing(){};  // does nothing but required by JavaScript in this case


function ZendMail(){
	var Naam="hjterhoeve";
	var Waar="planet.nl";
	
	window.location="mailto:"+Naam+"@"+Waar;
}
