// ALS 4/24/2005
// Client side JavaScript files for Royal Nest Guest House 

function NavigateTo(url) {
	parent.window.location.href = url;
}

var newWindow;

function ShowPic(btnname) {

	if (btnname == "buttonV1"){
		newWindow = window.open("RoomQ.html","RoomView","Height=240,Width=320");
		newWindow.moveTo(650,270);
	}
	else if (btnname == "buttonV2"){
		newWindow = window.open("RoomT.html","RoomView","HEIGHT=220,WIDTH=320");
		newWindow.moveTo(650,290);	
	}

	newWindow.focus();
}

function BtnMouseOver() {
	window.event.srcElement.style.backgroundColor='#EBC5C5';
	window.event.srcElement.style.color = '#3366CC';
	window.event.srcElement.style.cursor = 'hand';
}

function BtnMouseOut() {
	window.event.srcElement.style.backgroundColor='#E3A39F';
	window.event.srcElement.style.color = '#330099';
	window.event.srcElement.style.cursor = 'arrow';
}

function LinkMouseOver() {
	window.event.srcElement.style.color = '#3366CC';
	window.event.srcElement.style.cursor = 'hand';
}

function LinkMouseOut() {
	window.event.srcElement.style.color = '#330099';
	window.event.srcElement.style.cursor = 'arrow';
}

