var imgPop;

function popup (bestelnummer, afb, w, h) {
  url = "img/img_groot.php?bestelnummer="+bestelnummer+"&img="+afb;
  link = "img/img.php?id="+bestelnummer+"&img="+afb;
  
  newWindow = window.open (link, "", "width="+w+", height="+h+", status=no, left=5, top=5, resizable=yes");  
  newWindow.document.writeln ("<HTML><HEAD><TITLE>Afbeelding</TITLE></HEAD><BODY leftmargin=0 topmargin=0><a href='javascript:window.close()'><img src="+link+" border=0></a></BODY></HTML>");
}

function popup1 (bestelnummer, afb) {
  url = "img/img_groot.php?bestelnummer="+bestelnummer+"&img="+afb;
  link = "img/img.php?id="+bestelnummer+"&img="+afb;
  
  imgPop = new Image ();
  imgPop.src = link;
  
  checkLoad(url);
}

var imgPop, newWindow, w, h;

function checkLoad(link)
{
  if ( imgPop.readyState == 'complete') {
    w = imgPop.width;
	h = imgPop.height;
	newWindow = window.open (link, "", "width="+w+", height="+h+", status=no, left=5, top=5, resizable=yes");
//    newWindow.document.writeln ("<HTML><HEAD><TITLE>Afbeelding</TITLE></HEAD><BODY leftmargin=0 topmargin=0><a href='javascript:window.close()'><img src="+link+" border=0></a></BODY></HTML>");
  }
  else	 
	setTimeout ( "checkLoad('"+link+"')" , 100);
}
