//POP-UP
function NewWindow(mypage,myname,w,h,scroller,resize,full){
var win = null;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroller+',resizable='+resize+',fullscreen='+full
win = window.open(mypage,myname,settings);
win.focus();
}

//POP-UP : Propagandas
function NewWindowPro(mypage,myname,w,h,scroller,resize,full){
var win = null;
LeftPosition = 0;
TopPosition = 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroller+',resizable='+resize+',fullscreen='+full
win = window.open(mypage,myname,settings);
win.focus();
}

function Movie(){
  if(browser.is_mac || browser.is_nav){
	  NewWindow('movie.php','Oyster','796','600','NO','NO','NO');
  }else if (browser.is_win){
	  NewWindow('movie.php','Oyster','796','600','NO','NO','YES');
  }
}
