// JScript source code
function validate() 
	{
        if (document.theform.name.value == "") 
        {
        alert("You must enter your Name.");
        return false;
        }    
        
        if (document.theform.phone.value == "") 
        {
        alert("You must enter a Phone number.");
        return false;
        }    
           
        if (document.theform.email.value == "") 
        {
        alert("You must enter an Email address.");
        return false;
        }    
        
        if (document.theform.instructions.value == "") 
        {
        alert("You must enter your Instructions.");
        return false;
        }    
        
        if (document.theform.quantity.value == "") 
        {
        alert("You must enter the Quantity you want.");
        return false;
        }    
        
        if (document.theform.paper.value == "") 
        {
        alert("You must enter the Paper Type you want.");
        return false;
        }     		
        
        if (document.theform.FILE1.value == "")
        {
        alert("You must enter at least one File for uploading.");
        return false;
        } 
        
        if (document.theform.unless_otherwise_instructed.checked == false)
        {
        alert("You must check the box indicating your understanding and approval.");
        return false;
        }       
        
        if (document.theform.copyright.checked == false)
        {
        alert("You must agree that your file uploaded is not breaking the Copyright agreements.");
        return false;
        }  
                
        if (document.theform.proofing_approval[0].checked == false && document.theform.proofing_approval[1].checked == false)
        {
        alert("You must select an approved proofing method.");
        return false;
        }    
           
  
   }	
 

    