function paste_email_link() {
	/* Usage: <script language="JavaScript">paste_email_link();</script> */
	var a = "info"; 
	var b = "@"; 
	var c = "duquesnoy"; 
	var d = ".nl"; 
	document.write( "<a href=mailto:", a + b + c + d, ">", a + b + c + d, "</a>" ); 
}

function Photo(img,txt){
  photo_image= new Image();
  photo_image.src=(img);
  CheckPhoto(img,txt);
}

function CheckPhoto(img,txt){
  if((photo_image.width!=0)&&(photo_image.height!=0)){
    viewPhoto(img,txt);
  } else {
    uitvoering="CheckPhoto('"+img+"','"+txt+"')";
    interval=setTimeout(uitvoering,20);
  }
}

function viewPhoto(img,txt){
  imgwidth=photo_image.width;
  imgheight=photo_image.height;
  if (!txt) {txt=img}
  vars="width="+imgwidth+",height="+imgheight+",left="+((screen.width-imgwidth)/2)+",top="+((screen.height-imgheight)/2);
  newwindow=window.open("","image_window",vars);
  newwindow.document.clear();
  newwindow.document.write("<html>\n<head>\n<title>"+txt+"</title>\n");
  newwindow.document.write("<meta http-equiv=\"imagetoolbar\" content=\"no\">\n");
  newwindow.document.write("</head>\n\n<body style=\"margin:0px; padding:0px;\" onBlur=\"window.close()\">\n"); 
  newwindow.document.write("<img src=\""+img+"\" border=\"0\" onclick=\"javascript:window.close()\">\n"); 
  newwindow.document.write("</body>\n</html>\n"); 
  if (newwindow.document.focus) {newwindow.document.focus();}
  newwindow.document.close(); 
}

