<!-- PopUp FULL BARS AND MENU
function popUpF(URL, myWidth, myHeight) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=1,status=1,menubar=1,resizable=1,width=" + myWidth+ ",height=" + myHeight + ",left = 184,top = 81');");
}
//-->
<!-- PopUp NO BARS OR MENU
function popUpZ(URL, myWidth, myHeight) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,status=0,menubar=0,resizable=0,width=" + myWidth+ ",height=" + myHeight + ",left = 184,top = 81');");
}
//-->