
<!--
function custom_print() {
    if (document.all) {
        if (navigator.appVersion.indexOf("5.0") == -1) {
            var OLECMDID_PRINT = 6;
            var OLECMDEXECOPT_DONTPROMPTUSER = 2;
            var OLECMDEXECOPT_PROMPTUSER = 1;
            var WebBrowser = "<OBJECT ID=\"WebBrowser1\" WIDTH=0 HEIGHT=0 CLASSID=\"CLSID:8856F961-340A-11D0-A96B-00C04FD705A2\"></OBJECT>";
            document.body.insertAdjacentHTML("beforeEnd", WebBrowser);
            WebBrowser1.ExecWB(6, 2);
            WebBrowser1.outerHTML = "";
        } else {
            self.print();
        }
    } else {
        self.print();
    }
}
//-->
<!--
function AddToFaves_hp(){
  var is_4up = parseInt(navigator.appVersion);
  var is_mac   = navigator.userAgent.toLowerCase().indexOf("mac")!=-1;
  var is_ie   = navigator.userAgent.toLowerCase().indexOf("msie")!=-1;
  var thePage = location.href;
  if (thePage.lastIndexOf('#')!=-1)
    thePage = thePage.substring(0,thePage.lastIndexOf('#'));
  if (is_ie && is_4up && !is_mac)
    window.external.AddFavorite(thePage,document.title);
  else if (is_ie || document.images)
    booker_hp = window.open(thePage,'booker_','menubar,width=325,height=100,left=140,top=60');
  //booker_hp.focus();
  }
//-->
<!--
function GP_AdvOpenWindow(theURL,winName,features,popWidth,popHeight,center,ignorelink,alwaysOnTop,autoCloseTime,borderless) { //v1.1
  var autoCloseTimeoutHandle, ontopIntervalHandle, w = 480, h = 340;
  if (popWidth > 0) features += (features.length > 0 ? ',' : '') + 'width=' + popWidth;
  if (popHeight > 0) features += (features.length > 0 ? ',' : '') + 'height=' + popHeight;
  if (center && center != "" && popWidth > 0 && popHeight > 0) {
    if (document.all || document.layers || document.getElementById) {
      w = screen.availWidth; h = screen.availHeight;}
    var leftPos = (w-popWidth)/2, topPos = (h-popHeight)/2;
    features += (features.length > 0 ? ',' : '') + 'top=' + topPos+',left='+leftPos;}
  if (document.all && borderless && borderless != "" && features.indexOf("fullscreen") != -1) features+=",fullscreen=1";
  popupWindow = window.open(theURL,winName,features);
  if (popupWindow.opener == null) popupWindow.opener = self;
  if (document.all || document.layers || document.getElementById) {
    if (borderless && borderless != "") {popupWindow.resizeTo(popWidth,popHeight); popupWindow.moveTo(leftPos, topPos);}
    if (alwaysOnTop && alwaysOnTop != "") {
      ontopIntervalHandle = popupWindow.setInterval("window.opener.popupWindow.focus();", 50);
      popupWindow.document.body.onload = function() {popupWindow.setInterval("window.opener.popupWindow.focus();", 50);}; }
    if (autoCloseTime && autoCloseTime > 0) {
      popupWindow.document.body.onbeforeunload = function() {
        if (autoCloseTimeoutHandle) window.clearInterval(autoCloseTimeoutHandle);
        window.onbeforeunload = null; }
      autoCloseTimeoutHandle = window.setTimeout("popupWindow.close()", autoCloseTime * 1000); }
    window.onbeforeunload = function() {popupWindow.close();}; }
  document.MM_returnValue = (ignorelink && ignorelink != "") ? false : true;
}
//-->
