function validate_form ( )
{
    valid = true;

    if ( document.remoteprogramming.Name.value == "" )
    {
        alert ( "Please fill in the 'Name' box." );
        return false;
    } 
	

    if (document.remoteprogramming.Email.value == "" || document.remoteprogramming.Email.value.indexOf("@") == -1 || document.remoteprogramming.Email.value.indexOf(".") == -1 )
    {
        alert ( "Please fill in the 'Email' box with a valid email address." );
        return false;
    } 
	
	    if (isNaN(document.remoteprogramming.Phone.value) || document.remoteprogramming.Phone.value.length < 10)
    {
        alert ( "Please fill in the 'Phone Number' box with area code and no dashes or spaces." );
        return false;
    } 	
	
	    if ( document.remoteprogramming.System.value == "" )
    {
        alert ( "Please fill in the 'Programming Requirements' box." );
        return false;
    } 

	
    return valid;
}