function photoWindow(url, width, height) {
  width+=50;
  height+=60;
  ThePhotoWindow = window.open(url, "photoWin", "location=no,directories=no,menubar=no,statusbar=no,toolbar=no,scrollbars=no,height=" +height+ ",width=" +width+ ",resizable=no");
  ThePhotoWindow.resizeTo(width,height);
  ThePhotoWindow.focus();
  return false;
}

function popupWindow(url, width, height) {
  width+=50;
  height+=60;
  ThePopupWindow = window.open(url, "popup", "location=no,directories=no,menubar=no,statusbar=no,toolbar=no,scrollbars=yes,height=" +height+ ",width=" +width+ ",resizable=no");
  ThePopupWindow.resizeTo(width,height);
  ThePopupWindow.focus();
  return false;
}

///////////////////////////////// Mouseovers /////////////////////////////////////
var loaded = 0;

if (document.images) {
  preLoad("nav_01_live_entertainment");
  preLoad("nav_02_dining");
  preLoad("nav_03_accommodation");
  preLoad("nav_04_history");  
  loaded = 1;
}

function preLoad(imageFile) {
  eval(imageFile + "_over = new Image(); " + imageFile + "_over.src = 'images/" + imageFile + "_over.gif';");   
}

function imageOn(item) {
  if (loaded) {
    eval("document." + item + "I.src = " + item + "_over.src;");
  }
}

function imageOff(item) {
  eval("document." + item + "I.src = 'images/" + item + ".gif';");
}