// --------------------
// function BackMainMenu
// retour au menu principale apres confirmation
// -------------------- 
function BackMainMenu(userid)
{
  url = "mainmenu.php?userid="+userid;
  window.location.replace(url);
}

// --------------------
// function BackHotelMenu
// Retour au menu Hotelier
// -------------------- 
function BackHotelMenu(userid,hotelid)
{
  url = "modifhotel.php?userid="+userid+"&page_id=M101&bMenu=1&hotelid="+hotelid;
  window.location.replace(url);
}

// ================================================================
// GetYear: DisplayHelp
// Fonction permettant de faire appel a la page d'AIDE
// ================================================================ 
function DisplayHelp(userid, helpid, height)
{
  var largeur = 606;

  var top=(screen.height-height)/2;
  var left=(screen.width-largeur)/2;

  windowOptions  = "top="+top+",left="+left+",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,width="+largeur+",height="+height+",scrollbars=yes";
  url = "/manager/helpman.php?userid="+userid+"&helpid="+helpid;
  window.open(url,"",windowOptions);
}

