function popUp(URL){window.open(URL,"window",'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=575,height=400,left = 250,top = 250');}
function popUpCat(URL){var screenH=screen.availHeight;var screenW=screen.availWidth;var popupH=(screenH*.85);var popupW=(screenW*.85);var hmax=800;var wmax=1400;if(popupW>wmax)popupW=wmax;if(popupH>hmax)popupH=hmax;var left=(screenW-popupW)/2;var top=(screenH-popupH)/2;window.open(URL,"catalog",'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width='+popupW+',height='+popupH+',left = '+left+',top = '+top);}
function popUpUPS(URL){window.open(URL,"catalog",'toolbar=1,scrollbars=1,location=1,statusbar=1,menubar=1,resizable=1,width=990,height=600');}
