/****** GLOBAL VARIABLES ******/

var rPath= "images/";

/****** IMAGE PRELOADERS ******/

function preLoader(){

for (x=0; x<=5; x++) {
	imagevar="newimage" + x +" = new Image();"	
	eval(imagevar);
	
}
	newimage0.src = rPath + "home_over.gif";
	newimage1.src = rPath + "pictures_over.gif";
	newimage2.src = rPath + "attractions_over.gif";
	newimage3.src = rPath + "rates_over.gif";	
	newimage4.src = rPath + "terms_over.gif";	
	newimage5.src = rPath + "contact_over.gif";	
}

/****** BUTTON FUNCTIONS ******/

function buttonover(id) {
document.images[id].src=rPath + [id] +"_over.gif";
}

function buttonup(id) {

document.images[id].src=rPath + [id] +"_up.gif";

}

/****** WINDOW OPENER ******/

function openindex(element) { 
var OpenWindow=window.open("", "new"+element, "height=530, width=654,"); 
OpenWindow.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
OpenWindow.document.writeln("<html>");
OpenWindow.document.writeln("<head>");
OpenWindow.document.writeln("<title>Palm Villa Orlando</title>");
OpenWindow.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"pvstyles.css\" />");
OpenWindow.document.writeln("</head>");
OpenWindow.document.writeln("<body>");
OpenWindow.document.writeln("<br>"); 
OpenWindow.document.writeln("<p style=\"text-align:center\"><img src=\"images/" + element + ".jpg\"></p>"); 
OpenWindow.document.writeln("<p style=\"text-align:center\"><a href=\"javascript:self.close()\" target=\"_self\">Close</a></p>");
OpenWindow.document.writeln("</body>");
OpenWindow.document.writeln("</html>");
OpenWindow.document.close();
}

function openindex2(element) { 
var OpenWindow=window.open("", "new"+element, "height=610, width=654,"); 
OpenWindow.document.writeln("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
OpenWindow.document.writeln("<html>");
OpenWindow.document.writeln("<head>");
OpenWindow.document.writeln("<title>Palm Villa Orlando</title>");
OpenWindow.document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"pvstyles.css\" />");
OpenWindow.document.writeln("</head>");
OpenWindow.document.writeln("<body>");
OpenWindow.document.writeln("<br>"); 
OpenWindow.document.writeln("<p style=\"text-align:center\"><img src=\"images/" + element + ".jpg\"></p>"); 
OpenWindow.document.writeln("<p style=\"text-align:center\"><a href=\"javascript:self.close()\" target=\"_self\">Close</a></p>");
OpenWindow.document.writeln("</body>");
OpenWindow.document.writeln("</html>");
OpenWindow.document.close();
}

/****** FORM FUNCTIONS ******/

function errorCheck() {	
	if ((document.emailform.name.value=="")||(document.emailform.name.value==" ")){
		alert("Please fill in the 'Name' field");
		return false;
	}	
	if ((document.emailform.emailad.value=="")||(document.emailform.emailad.value==" ")){
		alert("Please fill in the 'Email' field");
		return false;
	}
	else {				
		document.emailform.submit();		
	}
}




