<!-- Begin hiding

function stopError() {//kills js errors after squishing banner
return true;
}
window.onerror = stopError;

// for opening full size image off the image name and path
function CaricaFoto(img){
  foto1= new Image();
  foto1.src=(img);
  Controlla(img);
}
function Controlla(img){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img);
  }
  else{
    funzione="Controlla('"+img+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function viewFoto(img){
  largh=foto1.width+20;
  altez=foto1.height+20;
  stringa="width="+largh+",height="+altez;
  finestra=window.open(img,"",stringa);
}


//for opening a popup window thats centered on page.
window.name = 'mainwindow';
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//standard popup window 
function openPopUp(url) {
  popUpWin = window.open(url, 
  'popUpWin','status=yes,scrollbars=yes,resizable=yes,width=500,height=350');
  if (popUpWin.focus) popUpWin.focus();
}

//maile rpopup
function popupMailer() {
  var NewWind = window.open( '','remote', 'width=350,height=400' );
  if (NewWind.opener == null) {
    NewWind.opener = window;
  }
}

// for dining out/accommodation jump menus - not needed anymore
/*
function warp(){
window.location=document.jumpmenu.jm.options[document.jumpmenu.jm.selectedIndex].value
}
*/

//  End Hiding -->