var alphaExp = /^[a-zA-Z]+$/; /* To accept alphabet only */
	var numericExpression = /^[0-9]+$/; /* To accept numbers only */
	var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/; /* To validate e-mail address */

  function valid_quick()
  {
	  	 if(document.quick.fname.value == 'Name*') {
		  alert('Please enter the Name!');
		  document.quick.fname.focus();
		return false;
    }
	
	else if(document.quick.email.value == 'E-mail*') {
		  alert('Please enter the E-mail Id!');
		  document.quick.email.focus();
		return false;
    }
	else if(!document.quick.email.value.match(emailExp)){
			alert("Invalid email address. Please enter again");
			document.quick.email.focus();
		return false;
		}
		
	else if(document.quick.phone.value == 'Phone*') {
		  alert('Please enter the Phone No.!');
		  document.quick.phone.focus();
		return false;
    }

	alert('Thank you for contacting us, one of experienced analyst will contact you shortly. You can also reach us at 1-888-986-7736 or 1-909-396-9200 between 9AM to 6PM PST to speak to us right away.');
	return true;
  }


function valid_quiry()
  {
	  	 if(document.quiry.fname.value == 'First Name*') {
		  alert('Please enter the Name!');
		  document.quiry.fname.focus();
		return false;
    }
	
	else if(document.quiry.email.value == 'E-mail*') {
		  alert('Please enter the E-mail Id!');
		  document.quiry.email.focus();
		return false;
    }
	else if(!document.quiry.email.value.match(emailExp)){
			alert("Invalid email address. Please enter again");
			document.quiry.email.focus();
		return false;
		}
		
	else if(document.quiry.tel.value == 'Tel*') {
		  alert('Please enter the Phone No.!');
		  document.quiry.tel.focus();
		return false;
    }
	
	alert('Thank you for contacting us, one of experienced analyst will contact you shortly. You can also reach us at 1-888-986-7736 or 1-909-396-9200 between 9AM to 6PM PST to speak to us right away.');
	return true;
  }



function valid_fbmob()
  {
	  	 if(document.fbmob.fname.value == '') {
		  alert('Please enter the Name!');
		  document.fbmob.fname.focus();
		return false;
    }
	
	else if(document.fbmob.email.value == '') {
		  alert('Please enter the E-mail Id!');
		  document.fbmob.email.focus();
		return false;
    }
	else if(!document.fbmob.email.value.match(emailExp)){
			alert("Invalid email address. Please enter again");
			document.fbmob.email.focus();
		return false;
		}
		
	else if(document.fbmob.phone.value == '') {
		  alert('Please enter the Phone No.!');
		  document.fbmob.phone.focus();
		return false;
    }

	alert('Thank you for contacting us, one of experienced analyst will contact you shortly. You can also reach us at 1-888-986-7736 or 1-909-396-9200 between 9AM to 6PM PST to speak to us right away.');
	return true;
  }

