<!--

var obj = null;
var thePics = new Array();


//FUNCTIONS
function swap(name,state) {
    if(thePics[name+state] && thePics[name+state].complete) {
        document.images[name].src = thePics[name+state].src;
    }
}

function preloadPics(thePics) {
	for (i=0;i<thePics.length;i++){
		thePics[thePics[i]] = new Image();
		thePics[thePics[i]].src = 'images/'+thePics[i]+'.gif';
		thePics[thePics[i]+'_over'] = new Image();
		thePics[thePics[i]+'_over'].src = 'images/'+thePics[i]+'_over.gif';
	}
}

function getFlash(flash,width,height,bgcolor) {
	var html = '';
		html = html + '<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" WIDTH=' + width + ' HEIGHT=' + height + '>';
		html = html + '<PARAM NAME=movie VALUE=\"' + flash + '\"><PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#' + bgcolor + '>';
		html = html + '<EMBED src=\"' + flash + '\" quality=high bgcolor=#' + bgcolor + ' WIDTH=' + width + ' HEIGHT=' + height + ' TYPE="application/x-shockwave-flash" PLUGINSPAGE=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\">';
		html = html + '</EMBED></OBJECT>';
	return html;
}

function popup(location) { 
	var dx=500;
	var dy=460;

	var w = window.open(location, 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=no,toolbar=no');
	w.focus();
}

function printMap() {
	var dx=500;
	var dy=460;

	var w = window.open('map_print.htm', 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}

function checkAvail(room) {
	opener.location = 'checkavail.htm';
	opener.focus();
}

	
function homeUncover() {
   obj = document.getElementById('homeCover2');
   obj.style.visibility = 'visible';
}


function photoPop(which) {
	var x=10;
	var y=10;
	var dx=550;
	var dy=480;

	var w = window.open('', '_blank', 'width=' + dx + ',height=' + dy + ',status=no,resizable=yes,menubar=yes,location=no,scrollbars=yes,toolbar=yes');
	w.document.writeln('<html><head><link rel=\"stylesheet\" type=\"text/css\" href=\"styles.css\"></head>');
	w.document.writeln('<body><center>');
	w.document.writeln('<br><a href=\"images/media/Hi_Res/'+which+'\" style=\"color:#fff;\">Click here for a high-resolution (6 megapixel) version of this photo.<br><br>');
	w.document.writeln('<img src=\"images/media/Lo_Res/'+which+'\"><br></a><br>');
	w.document.writeln('<a href=\"javascript:window.close()\" style=\"color:#fff;\">Close Window<br></a><br>');
	w.document.writeln('</center></body>');
	w.document.writeln('</html>');

	w.focus();
}

//-->
