<!--
//PopUp . Launchs window to specific size. URL is the URL of the PHP file and IMAGE is the image location
function popUp(IMAGE) {
URL = "/html/popup.php";
var win
 win = window.open(URL+'?image='+IMAGE, 'planWindow', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=640,height=480,left = 100,top = 1');
 win.focus();
}
//-->

