// contact form specific js
function validateForm(contact)
{
	// Customize these calls for your form

	// Start ------->
    if (!validRequired(contact.firstname,"First Name"))
		return false;

    if (!validRequired(contact.lastname,"Last Name"))
		return false;


	if (!validEmail(contact.clientemail,"Email Address",true))
		return false;

    if (!validEmail(contact.clientemail2,"Confirm Email",true))
		return false;

    // next if statement added by Skokna
    // email confirmation
    if (contact.clientemail.value != contact.clientemail2.value)
    {
    alert('Make sure you have correctly typed your email address and confirmed it.');
    return false;  }  

	


//	if (!validDate(form1.available,"Date Available",true))
//		return false;

//	if (!validNum(form1.yearsexperience,"Years Experience",true))
//		return false;
	// <--------- End
	
	return true;
}

