
function popUp(URL) {
day = new Date();
id = day.getTime();
var hdetail = window.open(URL, id,'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=yes,height=425,width=410');
}

function popUp2(URL,width,height) {
day = new Date();
id = day.getTime();
var hdetail = eval("window.open(URL, id,'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=yes,height=" + (height + 60) + ",width=" + (width + 80) + "')");
}

