<!--

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 pop(which) { 
	var dx=590;
	var dy=420;

	var w = window.open('room_'+which+'.htm', 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=no,toolbar=no');
	w.focus();
}


function itinPop() { 
	var dx=620;
	var dy=420;

	var w = window.open('itinerary.htm', 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=yes,menubar=yes,location=no,scrollbars=yes,toolbar=yes');
	w.focus();
}

function privacyPop() { 
	var dx=620;
	var dy=420;

	var w = window.open('privacy.htm', 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=yes,menubar=yes,location=no,scrollbars=yes,toolbar=yes');
	w.focus();
}

function pop360(which) { 
	var dx=460;
	var dy=320;

	var w = window.open('pop360_'+which+'.htm', 'popup360', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=no,toolbar=no');
	w.focus();
}

function popWin(location) { 
	var dx=650;
	var dy=400;

	var w = window.open(location+'.htm', 'popwin2', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=yes,location=no,scrollbars=yes,toolbar=no');
	w.focus();
}

function popDown(location) {
	if(!window.opener.closed) {
		window.opener.location = location;
		window.opener.focus();
	} else {
		var ww = window.open(location);
		ww.focus();
	}
}

//-->
