<!--
today = new Date();

var leftpic = 1;
var rightpic = 1;

/* Some of below Original Source: Webmonkey Code Library
   (http://www.hotwired.com/webmonkey/javascript/code_library/)
   Modified for use. */

function WM_preloadImages() {
/* Usage: WM_preloadImages('image 1 URL', 'image 2 URL', 'image 3 URL', ...); */
  // Don't bother if there's no document.images
  if (document.images) {
    if (typeof(document.WM) == 'undefined'){
      document.WM = new Object();
    }
    document.WM.loadedImages = new Array();
    // Loop through all the arguments.
    var argLength = WM_preloadImages.arguments.length;
    for(arg=0;arg<argLength;arg++) {
      // For each arg, create a new image.
      document.WM.loadedImages[arg] = new Image();
      // Then set the source of that image to the current argument.
      document.WM.loadedImages[arg].src = WM_preloadImages.arguments[arg];
    }
  }
}

function IM_ImgSwp(theImage, theSrc){
  var objStr,obj;
  /* Usage: IM_imgSwp(originalImage, 'newSourceUrl'); */

  if(document.images){
    if (typeof(theImage) == 'string') {
      objStr = 'document.' + theImage; obj = eval(objStr); obj.src = theSrc;
    } else if ((typeof(theImage) == 'object') && theImage && theImage.src) {
      theImage.src = theSrc;
    }
  }
}

function RotLeftPics() {
  if (leftpic == 1) { document.leftpic.src='images/PhtWineShelf.jpg'; leftpic = 2;
    } else if (leftpic == 2) { document.leftpic.src='images/PhtWinecell.jpg'; leftpic = 3;
    } else if (leftpic == 3) { document.leftpic.src='images/PhtTasteRoom.jpg'; leftpic = 4;
    } else if (leftpic == 4) { document.leftpic.src='images/PhtTerrace2.jpg'; leftpic = 5;
    } else if (leftpic == 5) { document.leftpic.src='images/PhtCigarRmTSm.jpg'; leftpic = 6;
    } else if (leftpic == 6) { document.leftpic.src='images/PhtChook.jpg'; leftpic = 1;
  }
  setTimeout('RotLeftPics()',4000);	
}

function RotRightPics() {
  if (rightpic == 1) { document.rightpic.src='images/PhtDine.jpg'; rightpic = 2;
    } else if (rightpic == 2) { document.rightpic.src='images/PhtWow.jpg'; rightpic = 3;
    } else if (rightpic == 3) { document.rightpic.src='images/PhtChooksBarSm.jpg'; rightpic = 4;
    } else if (rightpic == 4) { document.rightpic.src='images/PhtBanquet.jpg'; rightpic = 5;
    } else if (rightpic == 5) { document.rightpic.src='images/PhtSteak.jpg'; rightpic = 1;
  }
  setTimeout('RotRightPics()',4000);	
}

function UserPrint(cgiwin) {
  usignup=window.open(cgiwin,"status","height=400, width=620, toolbar=yes, scrollbars=yes, resize=false, titlebar=no, alwaysRaised=yes");
}



// -->

