// Validation Check for Contact Us Form

function fullcheck()
{
  var str=document.contactform.email.value;
//alert(str);

	if(!validate_text(document.contactform.company,1,"Blank space not allowed. Please Enter Your Company Name."))
		return false;
		
	if(!validate_email(document.contactform.email,1))
		return false;	
		
	if(document.contactform.enquiry.selectedIndex==0){
		alert("Please select a enquiry type");	
		document.contactform.enquiry.focus();
		return false;
	}	
    
}




// Validation Check for Course Booking Form

function fullcheck1()
{
  var str=document.bookingform.email.value;
//alert(str);

		if(!validate_text(document.bookingform.company,1,"Blank space not allowed. Please Enter Your Company Name."))
			return false;
		
		if(!validate_email(document.bookingform.email,1))
			return false;
		
		
		

      
}


// Validation Check for Demo CD Request Form

function fullcheck2()
{
  var str=document.demoform.email.value;
//alert(str);

	if(!validate_text(document.demoform.company,1,"Blank space not allowed. Please Enter Your Company Name."))
		return false;
		
	if(!validate_email(document.demoform.email,1))
		return false;
	if(document.demoform.cd.selectedIndex==0){
		alert("Please select which demo CD you want.");	
		document.demoform.cd.focus();
		return false;
	}	
    
}