// Common JavaScript for Club Monaco site


function reallyCenterWindow(theURL,winName,winWidth,winHeight) {
var leftPos=0;
var topPos=0;
if (screen) {
leftPos = (screen.width / 2) - (winWidth/2);
topPos = (screen.height / 2) - (winHeight/2);
}
window.open(theURL,winName,'menubar=yes,scrollbars=0,width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos);
} 
// Print Script
function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature. \nDésolé, votre navigateur ne peut pas prendre cette fonction en charge.");
}
function reallyCenterWindow2(theURL,winName,winWidth,winHeight) {
var leftPos=0;
var topPos=0;
if (screen) {
leftPos = (screen.width / 2) - (winWidth/2);
topPos = (screen.height / 2) - (winHeight/2);
}
window.open(theURL,winName,'menubar=yes,scrollbars=1,width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos);
} 
// Print Script
function printPage() {
  if (window.print)
    window.print()
  else
    alert("Sorry, your browser doesn't support this feature. \nDésolé, votre navigateur ne peut pas prendre cette fonction en charge.");
}