function popUpWinX(URL) {
day = new Date();
id = day.getTime();
w=640;
h=640;
settings='scrollbars=1,resizable=0,width=640,height=640';
win=window.open(URL,id,'scrollbars=1,resizable=0,width=640,height=640');
}
function popUpWinSize(URL,w,h) {
day = new Date();
id = day.getTime();
if(w==''){w=480};
if(h==''){h=360};
settings='scrollbars=1,resizable=1,width='+w+',height='+h;
win=window.open(URL,id,settings);
}
function popupTest2(url)
{
win=window.open(url, 'TestName', 'width=640,height=640,resizable=1,scrollbars=1');
}


