reservations = new Image(88,25); 
reservations.src = "/images/buttons/reservations_on.gif"; 
rooms = new Image(50,25); 
rooms.src = "/images/buttons/rooms_on.gif"; 
promotions = new Image(81,25); 
promotions.src = "/images/buttons/promotions_on.gif"; 
casino = new Image(50,25); 
casino.src = "/images/buttons/casino_on.gif"; 
players_junction = new Image(118,25); 
players_junction.src = "/images/buttons/players_junction_on.gif"; 
restaurants = new Image(81,25); 
restaurants.src = "/images/buttons/restaurants_on.gif"; 
entertainment = new Image(102,25); 
entertainment.src = "/images/buttons/entertainment_on.gif"; 
banquets = new Image(66,25); 
banquets.src = "/images/buttons/banquets_on.gif"; 

function on(img){
	if (document.images && document.images[img]){
	document.images[img].src = eval(img + ".src");
	}
}
function off(img){
	if (document.images && document.images[img]){
	document.images[img].src = '/images/buttons/' + img + '_off.gif';
	}
}
function openWin(url, winWidth, winHeight, winName, winResize, winScroll){
var theWidth = (winWidth && winWidth != '') ? winWidth : 600;
var theHeight = (winHeight && winHeight != '') ? winHeight : 400;
var theResize = (winResize && winResize != '') ? winResize : 'yes';
var theScroll = (winScroll && winScroll != '') ? winScroll : 'yes';
var theName = (winName && winName != '') ? winName : 'jsWin';
var theWin = window.open(url, theName, 'width=' + theWidth + ',height=' + theHeight + ',menubar=no,resizable=' + theResize + ',location=no,toolbar=no,scrollbars=' + theScroll + ',screenX=5,screenY=5,top=5,left=5')
if (theWin) theWin.focus();
}
