<!--
	
		function submitIt(form1) {
        		    
			if (form1.first_name.value == "") {
				alert("You must enter your first name!")
				form1.first_name.focus()
				form1.first_name.select()
				return false
			}

            if (form1.surname.value == "") {
				alert("You must enter your surname!")
				form1.surname.focus()
				form1.surname.select()
				return false
			}
			
			    if (form1.company.value == "") {
				alert("You must enter your your company name!")
				form1.company.focus()
				form1.company.select()
				return false
			}
						
            if (form1.email.value == "") {
				alert("You must enter your email address!")
				form1.email.focus()
				return false
			}
							
			invalidChars = " |,\":<>[]{}`\';()&$#%/*+=^¬£"
				for (i=0; i<invalidChars.length; i++) {
				badChar = invalidChars.charAt(i)
				if (form1.email.value.indexOf(badChar,0) > -1) {
				alert("An invalid character is present in your email address! \n Please remove it!")
				form1.email.focus()
				return false
			}
			}
			
			atPos = form1.email.value.indexOf("@",1)	
			if (atPos == -1) {
				alert("Your email address is incorrect - @ is missing!")
				form1.email.focus()
				return false
			} 
			
			if (atPos+2 > form1.email.value.length) {
            alert("Your email address is incorrect. \n You left it blank after @ - why?")
	        form1.email.focus()
	    	return false
            }
							
			periodPos = form1.email.value.indexOf(".",atPos)
			if (periodPos == -1) {
				alert("Your email address is incorrect. \n Delimiter known as 'dot' is missing!")
				form1.email.focus()
				return false
			}
				
			if (periodPos+3 > form1.email.value.length)	{
				alert("Your email address is incorrect. \n Domain identifier is missing after 'dot'!")
				form1.email.focus()
				return false
			}	
									
			if (form1.email.value.indexOf("@interda.ru",1) > -1) {
				alert("CTL does not accept clients \n from this particular domain.")
				return false
			}

            if (form1.comment.value == "") {
				alert("Please provide full description of the file(s) that you want to have access to!")
				form1.comment.focus()
				form1.comment.select()
				return false
			}
 		    			
    	   return true
		    }
	
// -->
