<!--

function ValidateForm()
{

// your_name ** 
// email ** 
// start_location **
// finish_location **

// name

     if (document.cosdel.elements["form[your_name]"].value.length < 1)
    {        alert("You must enter your name!");
        document.cosdel.elements["form[your_name]"].focus();
        return false;
    }

// email

     if (document.cosdel.elements["form[email]"].value.length < 1)
    {        alert("You must enter your email address!");
        document.cosdel.elements["form[email]"].focus();
        return false;
    }		

// start_location

     if (document.cosdel.elements["form[start_location]"].value.length < 1)
    {        alert("You must enter the start location!");
        document.cosdel.elements["form[start_location]"].focus();
        return false;
    }		



// finish_location

	if (document.cosdel.elements["form[finish_location]"].value.length < 1)
    {        alert("You mmust enter the finish location!");
        document.cosdel.elements["form[finish_location]"].focus();
        return false;
    }	

	
						
}

//-->