function imagePopup(imageLocation,imageId)
{
  popupHTML = '<html><title>Taxi-Alliance.nl</title><style>body{margin:10px 0px 0px 10px;}</style><body onClick="top.close()"><a href="javascript:history.back();"><img src="'+ imageLocation +'" border="0" name="imageFull" onload="window.resizeTo(document.imageFull.width+30,document.imageFull.height+50)"></a></body></html>';
  popupImage = window.open('','_blank','toolbar="no",scrollbars="no",status="no"');
  popupImage.document.open();
  popupImage.document.write(popupHTML);
  popupImage.document.close();
}

// Websitepopup - javascript:openPOPUP('maart.php','450','400')
 
function openPOPUP(url,breedte,hoogte){ 
POPUPWindow = window.open(url, 'popup', 'toolbar=0, location=0, directories=0, statusbar=0, menubar=0, scrollbars=1, resizable=0, width='+breedte+', height='+hoogte)} 
