

// ----------------------------------------------------
// --- pops up the pano window

var pop = null;
function showPano(panofile) {

  var args = 'scrollbars=yes,width=500,height=250,resizable=false,left='+410+',top='+20+',screenX='+410+',screenY='+20;
  pop = window.open('http://www.hotellinde.at/pano/panoviewer.php?panofile='+panofile,'',args);
  var retval = (pop) ? false : true;
  return retval;
}
