var mobilePopUpWindow=null;
function mobilePopUp(mypage,myname,w,h,pos,infocus){
if (pos == 'random')
{LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
else
{LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?(screen.height-h)/2:100;}
settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition + ',scrollbars=1,location=0,directories=0,status=0,menubar=0,toolbar=0,resizable=0';mobilePopUpWindow=window.open('',myname,settings);
if(infocus=='front'){mobilePopUpWindow.focus();mobilePopUpWindow.location=mypage;}
if(infocus=='back'){mobilePopUpWindow.blur();mobilePopUpWindow.location=mypage;mobilePopUpWindow.blur();}
}
