Website Design:
We provide magnificent Website for your business at a very cheaper cost,you can’t even think.Please go-through our Port Folio for some Demo Designs.
function validateForm()
{
/* Validating name field */
var x=document.forms["webForm"]["cname"].value;
if (x==null || x=="")
{
alert("Company Name must be filled out");
return false;
}
/* Validating email field */
var x=document.forms["webForm"]["email"].value;
var atpos=x.indexOf("@");
var dotpos=x.lastIndexOf(".");
if (atpos<1 || dotpos
{
alert("Not a valid e-mail address");
return false;
}
}