if (top.location != self.location) {
top.location.replace(self.location)
}

	<!--
	// check lead forms		
	function checkLeadForm(VacationRequest) {
		var missinginfo = "";	
		if (document.VacationRequest.Name.value == "") {
			missinginfo += "\n     -  Name";
		}
		if (document.VacationRequest.day_phone_1.value == "") {
			missinginfo += "\n     -  Phone 1 -- Area Code";
		}
		if (document.VacationRequest.day_phone_2.value == "") {
			missinginfo += "\n     -  Phone 1 -- First 3 Digits";
		}
		if (document.VacationRequest.day_phone_3.value == "") {
			missinginfo += "\n     -  Phone 1 -- Last 4 Digits";
		}
		if ((document.VacationRequest.Email.value == "") || 
			(document.VacationRequest.Email.value.indexOf('@') == -1) || 
			(document.VacationRequest.Email.value.indexOf('.') == -1)) {
			missinginfo += "\n     -  Email Address";
		}
		if (missinginfo != "") {
			missinginfo ="_____________________________\n" +
			"You failed to correctly fill in your:\n" +
			missinginfo + "\n_____________________________" +
			"\nPlease re-enter and submit again!";
			alert(missinginfo);
			return false;
		}	
		else return true;
	}	

	<!--
	// check lead forms		
	function checkNewLeadForm(VacationRequest) {
		var missinginfo = "";	
		if (document.VacationRequest.Name.value == "") {
			missinginfo += "\n     *  Name";
		}
		if (document.VacationRequest.phone_1_1.value == "") {
			missinginfo += "\n\n     *  Phone 1 - Area Code";
		}
		if (document.VacationRequest.phone_1_2.value == "") {
			missinginfo += "\n     *  Phone 1 - First 3 Digits";
		}
		if (document.VacationRequest.phone_1_3.value == "") {
			missinginfo += "\n     *  Phone 1 - Last 4 Digits";
		}
		if ((document.VacationRequest.Email.value == "") || 
			(document.VacationRequest.Email.value.indexOf('@') == -1) || 
			(document.VacationRequest.Email.value.indexOf('.') == -1)) {
			missinginfo += "\n\n     *  Email Address";
		}
		if (missinginfo != "") {
			missinginfo ="\n\n" +
			"Error: Required fields -\n" +
			missinginfo + "\n" +
			"\n\nPlease re-enter and Send again";
			alert(missinginfo);
			return false;
		}	
		else return true;
	}	

	
// Begin WindowPop Script
var pWindow = null;
function popWindow(URL, myWidth, myHeight){
		LeftPosition = (screen.width) ? (screen.width-myWidth)/2 : 0;
		TopPosition = (screen.height) ? (screen.height-myHeight)/2 : 0;
		specs ='height='+myHeight+',width='+myWidth+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=yes,toolbar=no, menubar=no'
		pWindow = window.open(URL,"GWRemote",specs);
		pWindow.focus();
	}
// example
// <a href="javascript:;" onClick="javascript:popWindow('/popDisplay.asp','575','625'); return false;">link is here.</a>
// End -->

// Begin Scrolling Menu
function setVariables() {
if (navigator.appName == "Netscape") {
v=".top=";
dS="document.";
sD="";
y="window.pageYOffset";
}
else {
v=".pixelTop=";
dS="";
sD=".style";
y="document.body.scrollTop";
}
}
function checkLocation() {
object="object1";
yy=eval(y);
eval(dS+object+sD+v+yy);
setTimeout("checkLocation()",10);
}

//  End -->


//RollOver Script by HTMLfx.com 

function initRollOver() {
  if (!document.getElementById) return
  var imgOriginSrc;
  var imgTemp = new Array();
  var imgarr = document.getElementsByTagName('img');
  for (var i = 0; i < imgarr.length; i++) {
    if (imgarr[i].getAttribute('hsrc')) {
        imgTemp[i] = new Image();
        imgTemp[i].src = imgarr[i].getAttribute('hsrc');
		imgarr[i].onmouseover = function() {
			imgOriginSrc = this.getAttribute('src');
            this.setAttribute('src',this.getAttribute('hsrc'));
        }
        imgarr[i].onmouseout = function() {
			if (imgOriginSrc == null){
				imgOriginSrc = this.getAttribute('src');
			}
			this.setAttribute('src',imgOriginSrc);
			
        }
    }
  }
}

// End -->

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=475,left = 150,top = 60');");
}
function popUpHotels(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=475,left = 10,top = 120');");
}

