// JScript source code
function validate() 
	{
        if (document.quote.name.value == "") 
        {
        alert("You must enter your Name.");
        return false;
        }    
        
        if (document.quote.phone.value == "") 
        {
        alert("You must enter a Phone number.");
        return false;
        }    
           
        if (document.quote.email.value == "") 
        {
        alert("You must enter an Email address.");
        return false;
        }    
        
        if (document.quote.instructions.value == "") 
        {
        alert("You must enter your Instructions.");
        return false;
        }
        
        if (document.quote.copyright.checked == false)
        {
        alert("You must agree that your file uploaded is not breaking the Copyright agreements.");
        return false;
        }  
   }