function validateform()
{
	// Lets make sure a Zip Code is entered:
	var zip = document.search_form.zip.value;


	if ((zip == '' || zip == undefined) ){
		alert("Please enter your zipcode.");
		document.search_form.zip.focus();
		return false;
	}
	return true;
}
 
function NewWindow(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
  
function hideThis(thisDiv){
	var hDiv = document.getElementById(thisDiv);
	hDiv.style.display = "none";
}

function showThis(thisDiv){
	var sDiv = document.getElementById(thisDiv);
	sDiv.style.display = "block";
}
