<!--
//onderstaand script : (C) mark knol proximedia.nl
function popup(url,titel) { 
    l = 50; 
    t = 50; 
    venster=window.open("","","width=750,height=550,left="+l+",top="+t+",status=yes"); 
    venster.document.write("<html><head><title>"+titel+"</title></head>"); 
    venster.document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"style.css\">	"); 
    venster.document.write("<body style=\"margin: 0 0 0 0\">"); 
    venster.document.write("<table width=750 height=550 cellpadding=0 cellspacing=0 border=0>"); 
    venster.document.write("<tr height=87><td align=left class=\"onder\" bgcolor=\"#F9F8D6\"><img src=\"images/catalogus.gif\" border=0></td><td align=center bgcolor=\"#F9F8D6\" class=\"onder\">");
    venster.document.write("<BR><form action=\"http://www.proximedia.com/catalogue/catalogue.asp\" method=\"post\" name=\"formtext\" target=\"ok\">"); 
    venster.document.write("<input type=\"hidden\" name=\"search\" value=\"yes\">"); 
    venster.document.write("<input type=\"hidden\" name=\"site_id\" value=\"23679\">"); 
    venster.document.write("<input type=text name=mot>&nbsp;&nbsp;<input type=\"submit\" class=\"inputbutton\" value=\"Opzoeken\"></form>"); 
	venster.document.write("</td></tr><tr><td colspan=2 bgcolor=#F9F8D6 class=\"onder\">"); 	
    venster.document.write("<iframe src="+url+" frameborder=\"0\" name=\"ok\" scrolling=\"Auto\" width=\"100%\" height=\"100%\" ></iframe>");
    venster.document.write("</td></tr></table>"); 
    venster.document.write("</body></html>"); 
} 


function popitup(url)
{
	newwindow=window.open(url,'name','width=650,height=550,status=yes,scrollbars=yes,resizable=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}


// Dit script is gemaakt door mark knol @ proximedia
// Deze versie laadt een plaatje in een popupvenster 
// zonder witte randen en pakt automatisch de goede maat.

function Foto(img){
  foto1= new Image();
  foto1.src=(img);
  CheckFoto(img);
}
function CheckFoto(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    uitvoering="CheckFoto('"+img+"')";
    interval=setTimeout(uitvoering,20);
  }
}
function viewFoto(img){
  imgbreedte=foto1.width;
  imghoogte=foto1.height;
  vars="width="+imgbreedte+",height="+imghoogte+",left="+((screen.width-imgbreedte)/2)+",top="+((screen.height-imghoogte)/2);
  newwindow=window.open("","proximedia",vars);
  newwindow.document.write("<html>\n<head>\n<title>Unicorn shop</title>\n");
  newwindow.document.write("<meta http-equiv=\"imagetoolbar\" content=\"no\">\n");
  newwindow.document.write("</head>\n\n<body style=\"margin: 0 0 0 0;\">\n"); 
  newwindow.document.write("<img src=\""+img+"\" border=\"0\" onclick=\"javascript:window.close()\">\n"); 
  newwindow.document.write("</body>\n</html>\n"); 
  newwindow.document.focus();
  newwindow.document.close(); 
}
-->