var adv;
function popUp_move(strMove,ww,hh){
  left=window.screen.width/2-350/2
  width=320;
  height=240;
  if (!isNaN(ww) && ww!=''){width=ww}
  if (!isNaN(hh) && hh!=''){height=hh}
  adv=window.open(strMove,'adv','width='+ width +',height='+ height +', left='+ left +',top=100,screenX=0,screenY=0,resizable=0,status=0,toolbar=0,scrollbars=0');    
}

