//Pop up window function!

function popUp(URL) {
day = new Date();
idd = day.getTime();
eval("page" + idd + " = window.open(URL, '" + idd + "', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=700,height=400');");
}

function popUp2(URL) {
day = new Date();
idd = day.getTime();
eval("page" + idd + " = window.open(URL, '" + idd + "', 'toolbar=0,scrollbars=1,location=1,statusbar=0,menubar=0,resizable=1,width=800,height=480');");
}


function displayPopup(url, height, width)

{

 properties = "toolbar=0,location=0,scrollbars=1,height=" + height;

 properties = properties + ",width=" + width;

 properties = properties + ",left=0,top=0";

 var popupHandle = window.open(url);

 }
