<!--
onload=function() {
	document.getElementById("fullName").focus();
}
//-->

<!--
function formCheck(frm) {
	if (!(frm.spaceSize.options[frm.spaceSize.selectedIndex].value)) {
		alert('Please Select the Space Size');
		frm.spaceSize.focus();
		return false;
		}

	if (frm.fullName.value.length<2) {
		alert('Please Enter a valid Full Name');
		frm.fullName.focus();
		return false;
		}

	var ph = frm.phone.value.replace( /[^\d]/g, "" );
	if (ph.length != 10) {
		alert("Please Choose a Valid Phone Number Including Area Code");
		frm.phone.focus();
		return false;
		}

	if (!(frm.zipCode.value.search (/^[0-9]{5}$/) > -1)) {
		alert('Please Enter a Valid Zip Code');
		frm.zipCode.focus()
		return false;
		}

	return true;
}
//-->

<!--
function formCheckWD(frm) {
	if (frm.fullName.value.length<2) {
		alert('Please Enter a valid Full Name');
		frm.fullName.focus();
		return false;
		}

	var ph = frm.phone.value.replace( /[^\d]/g, "" );
	if (ph.length != 10) {
		alert("Please Choose a Valid Phone Number Including Area Code");
		frm.phone.focus();
		return false;
		}

	if (!(frm.zipCode.value.search (/^[0-9]{5}$/) > -1)) {
		alert('Please Enter a Valid Zip Code');
		frm.zipCode.focus()
		return false;
		}

	return true;
}
//-->

<!--
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=460,width=410');
	if (window.focus) {newwindow.focus()}
}
//-->
