var g_indexActiveMenu=0;

function errorHandler() {
  return false;
}

function rollover(name,id,state) {
  if(typeof(g_arrImgRollover)=="undefined") return;
  getI(name).src=(state==1)?g_arrImgRollover[id].on.src:g_arrImgRollover[id].off.src;
}

function ImageRollover(strOff, strOn) {
  this.off=new Image();
  this.off.src=strOff;
  this.on=new Image();
  this.on.src=strOn;
}

function open_link(URL,title, options) {
    if (URL) {
      var whatspopup = window.open(URL, title, options);  // Open a new window and show the specified page
      whatspopup.focus();
    }
}
