function image_open(image_loc,img)
{
  HTML = "<html><title>Crossroadsmotortours.nl</title><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()'><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30)'></body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  
}

function image_openlabeled(image_loc,img,titel,text)
{
  extraheight = 15 * Math.ceil(text.length / 45);
  HTML = "<html><title>Crossroadsmotortours.nl</title><style>body{margin:0px 0px 0px 0px}</style><body onBlur='top.close()' bgcolor=\"#000000\"><div align=center><center><font face=arial size=2 color=white>"+text+"<br><img src='"+ image_loc +"' border=0 name=load_image onLoad='window.resizeTo(document.load_image.width+10,document.load_image.height+30+30+"+extraheight+")'><br>"+titel+"</body></html>";
  popupImage = window.open('','_blank','toolbar=no,scrollbars=no');
  popupImage.document.open();
  popupImage.document.write(HTML);
  popupImage.document.close();
  
}

