function popupWindow1(url,hite,wide) { 
window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,screenX=150,screenY=150,top=80,left=80,statusbar=no,height='+hite+', width='+wide)
}
function product_popup(who,where,hite,wide){
        if (window.event)
        {  window.event.returnValue = false;   }
        who = where + who ;
        hite=screen.height-100;
        wide=screen.width-100;

        var props=window.open(who, 'newwin', 'scrollbars=1,toolabars=0,resizable=1,status=0,menubar=0,directories=0,location=0,height='+hite+', width='+wide);

        var windowX = (screen.width/2-screen.width/3);
        var windowY = (screen.height/2)-screen.height/3;

        props.moveTo(windowX,windowY);
}

