var loadPixFlag = 0;

function loadPix() {
	if (document.images) {
		homeon = new Image(240,29);
		homeon.src = "gizmos/navigation/home2.gif";

		reservationson = new Image(129,29);
		reservationson.src = "gizmos/navigation/reservations2.gif";

		cottageson = new Image(100,29);
		cottageson.src = "gizmos/navigation/cottages2.gif";

		packageson = new Image(177,29);
		packageson.src = "gizmos/navigation/packages2.gif";

		galleryon = new Image(144,29);
		galleryon.src = "gizmos/navigation/gallery2.gif";

		locationon = new Image(224,28);
		locationon.src = "gizmos/navigation/location2.gif";

		loadPixFlag = 1;
	}
}

if (document.images) {
		homeoff = new Image(240,29);
		homeoff.src = "gizmos/navigation/home1.gif";

		reservationsoff = new Image(129,29);
		reservationsoff.src = "gizmos/navigation/reservations1.gif";

		cottagesoff = new Image(100,29);
		cottagesoff.src = "gizmos/navigation/cottages1.gif";

		packagesoff = new Image(177,29);
		packagesoff.src = "gizmos/navigation/packages1.gif";

		galleryoff = new Image(144,29);
		galleryoff.src = "gizmos/navigation/gallery1.gif";

		locationoff = new Image(224,28);
		locationoff.src = "gizmos/navigation/location1.gif";
}

function flipOn(imgName) {
	if (document.images && loadPixFlag) {
		imgOn = eval(imgName + "on.src");
		document[imgName].src = imgOn;
	}
}

function flipOff(imgName) {
	if (document.images && loadPixFlag) {
		imgOff = eval(imgName + "off.src");
		document[imgName].src = imgOff;
	}
}

function framebuster() {
	if (self.parent.frames.length != 0) self.parent.location=document.location;
}

function startup() {
	framebuster();
	loadPix();
}

function PopupPhoto(id) {
	var photourl = "galleryphoto.cfm?id="+id;
	if (document.images) {
		pw=window.open( photourl, "pw", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=500,height=450,screenX=50,screenY=50,top=50,left=50");
	} else {
		alert( '\nSorry, this Feature requires Netscape Navigator, Version 3.0 or greater\n'+
				'or Microsoft Internet Explorer, Version 4.0+.\n\n' );
	}
}

function SlideShow() {
	var photourl = "slideshow.cfm";
	if (document.images) {
		pw=window.open( photourl, "sw", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=500,height=450,screenX=50,screenY=50,top=50,left=50");
	} else {
		alert( '\nSorry, this Feature requires Netscape Navigator, Version 3.0 or greater\n'+
				'or Microsoft Internet Explorer, Version 4.0+.\n\n' );
	}
}

function PopupMap() {
	var photourl = "gizmos/LocationMap.gif";
	if (document.images) {
		pw=window.open( photourl, "pw", "toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,width=520,height=490,screenX=50,screenY=50,top=50,left=50");
	} else {
		alert( '\nSorry, this Feature requires Netscape Navigator, Version 3.0 or greater\n'+
				'or Microsoft Internet Explorer, Version 4.0+.\n\n' );
	}
}

