//Copyright Intelligent Minds 2003
//This header should not be removed

w3c = document.getElementById ?true:false;
iex = document.all ?true:false;
ns4 = document.layers ?true:false;
supported = (w3c || iex || ns4) ?true:false;
if(!supported){
	window.location.href = '/redirect.html';
}

if(document.layers){
	origWidth = window.innerWidth;
	origHeight = window.innerHeight;
	window.onResize = fixNetscape;
}
function fixNetscape(){
	if(origWidth != window.innerWidth || origHeight != window.innerHeight){
		window.location.reload();
	}	
}

function verify(element1, element2, element3, element4){
var passed=false

if (element1.value==''){
alert("Please enter your Business Name.")
element1.focus()
}
else if (element2.value==''){
alert("Please enter Owner's Name.")
element2.focus()
}
else if (element3.value==''){
alert("Please enter your email address on file.")
element3.focus()
}
else if (element4.value==''){
alert("Please select date.")
element4.focus()
}
else
passed=true

return passed

}
