function mailinglistform() {

    var name = document.getElementById("name").value;    
    var email = document.getElementById("email").value;	
	var company = document.getElementById("company").value; 
	
    var focus = "";
    var errormsg = "";
	
	if(name.length == 0 ){
        errormsg+='Please enter your Name\n';
        if (focus=="") focus = "name";
        document.getElementById("name").style.backgroundColor = '#d0d2d3';
    }
	if(name  == 'Name'){
        errormsg+='Please enter your Name\n';
        if (focus=="") focus = "name";
        document.getElementById("name").style.backgroundColor = '#d0d2d3';
    }
	if(email==''){
        errormsg+='Please enter your Email Address\n';
        if (focus=="") focus = "email";
        document.getElementById("email").style.backgroundColor = '#d0d2d3';
    }
	if(email=='Email'){
        errormsg+='Please enter your Email Address\n';
        if (focus=="") focus = "email";
        document.getElementById("email").style.backgroundColor = '#d0d2d3';
    }
    else if(email != ''){
        if (email.indexOf('@')==-1||email.indexOf('.')==-1||email.indexOf('@.')!=-1){
            errormsg+="Please provide a valid Email Address\n";
            if (focus=="") focus = "email";
            document.getElementById("email").style.backgroundColor = '#d0d2d3';
        }
    }	
    if(company.length==0){
        errormsg+='Please enter your Mobile Name\n';
        if (focus=="") focus = "company";
        document.getElementById("company").style.backgroundColor = '#d0d2d3';
    }
	
	 if(company=='Mobile Phone'){
        errormsg+='Please enter your Mobile Name\n';
        if (focus=="") focus = "company";
        document.getElementById("company").style.backgroundColor = '#d0d2d3';
    }
	else if(company.length > 8){
        errormsg+='Please enter no more than 8 numbers for your Contact Number\n';
        if (focus=="") focus = "company";
        document.getElementById("company").style.backgroundColor = '#DFBCE7 ';
    }
	else if(company.length < 8){
        errormsg+='Please enter at least 8 numbers for your Contact Number\n';
        if (focus=="") focus = "company";
        document.getElementById("company").style.backgroundColor = '#DFBCE7 ';
    }
    else if (!/^-?\d+$/.test(company)){
        errormsg+='Please enter only numbers for your Contact Number\n';
        if (focus=="") focus = "company";
        document.getElementById("company").style.backgroundColor = '#DFBCE7 ';
    }
	
    if (errormsg!= ""){
        document.getElementById(focus).focus();
        alert(errormsg);
        return false;

    }else{
        return true;
    }
}
