<!--
// Quote validation functions 
// Check for email address: look for [@] and [.] 
function isEmail(elm) {
    if (elm.value.indexOf("@") + "" != "-1" &&
        elm.value.indexOf(".") + "" != "-1" &&
        elm.value != "") 
    return true;
    else return false;
}
// Check for null and for empty
function isFilled(elm) {
    if (elm.value == "" ||
        elm.value == null) 
    return false;
    else return true;
}
function isReady(form) {
    // is address element a real email address?
    if (isEmail(form.email) == false) { 
    alert("Please enter your complete email address.");
	document.getElementById('ContactInformation').style.display='inline';
	document.getElementById('reqemail').style.color='red';
    form.email.focus();
	return false;
    }
    // is first name element filled?
    if (isFilled(form.name) == false) {
    alert("Please enter your first name.");
	document.getElementById('ContactInformation').style.display='inline';
	document.getElementById('reqname').style.color='red';
    form.name.focus();
    return false;
    }
return true;
}
// -->
