// JavaScript Document
function validate_form ( )
{
    if ( document.quickContact.name.value == "Your Name" )
    {
        alert ( "Please fill in the 'Your Name' box." );
		document.quickContact.name.focus();
        return false;
    }
	
    if ( document.quickContact.email.value == "Your E-mail" )
    {
        alert ( "Please fill in the 'Your eMail' box." );
		document.quickContact.email.focus();
        return false;
    }
	
    if ( document.quickContact.phone.value == "Your Phone No." )
    {
        alert ( "Please fill in the 'Phone Number' box." );
		document.quickContact.phone.focus();
        return false;
    }
	
    if ( document.quickContact.details.value == "Your Comments/Feedback" )
    {
        alert ( "Please fill in the 'Details' box." );
		document.quickContact.details.focus();
        return false;
    }
	
	if ( document.quickContact.service.value == "Services Offered" )
    {
        alert ( "Please select service from 'Service' box." );
		document.quickContact.service.focus();
        return false;
    }
}

function validate_form_contact ( )
{
    if ( document.quickContact.name.value == "" )
    {
        alert ( "Please fill in the 'Full Name' box." );
		document.quickContact.name.focus();
        return false;
    }
	
    if ( document.quickContact.email.value == "" )
    {
        alert ( "Please fill in the 'Email' box." );
		document.quickContact.email.focus();
        return false;
    }
	
    if ( document.quickContact.phone.value == "" )
    {
        alert ( "Please fill in the 'Phone' box." );
		document.quickContact.phone.focus();
        return false;
    }
	
    if ( document.quickContact.details.value == "" )
    {
        alert ( "Please fill in the 'Project Details' box." );
		document.quickContact.details.focus();
        return false;
    }
	
	if ( document.quickContact.service.value == "Services Offered" )
    {
        alert ( "Please select service from 'Service Required' box." );
		document.quickContact.service.focus();
        return false;
    }
	document.quickContact.submit();
}
//Services Offered
