function popUpfixed(URL,w,h) {
hh = (screen.height - 140);
if (hh >= h ) {hh = h};
winl = (screen.width - w) / 2;
wint = (screen.height - hh) / 10;
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,status=0,menubar=0,resizable=1,width="+w+",height="+hh+",top="+wint+",left="+winl+"');");
}

