function is_valid(form){ //var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/; var emailExp = /([\w\-]+\@[\w\-]+\.[\w\-]+)/; var webExp = /[\w\-]+\.[\w\-]+/; var numericExpression = /^[0-9 \.\-\+]+$/; //check firstname if(form.c_name.value==''){ //alert('hello world'); alert('Contact Name* : required'); form.c_name.focus(); return false; } // //check Telephone not empty if(form.c_phone.value!="") { if(!form.c_phone.value.match(numericExpression)){ alert('Telephone Number : must be valid'); form.c_phone.focus(); return false; } } //check email1 if is invalid if(!form.c_email1.value.match(emailExp)){ alert('Email Address* : must be valid'); form.c_email1.focus(); return false; } //check email2 if is invalid if(form.c_email2.value!="") { if(!form.c_email2.value.match(emailExp)){ alert('Alternative Email : must be valid'); form.c_email2.focus(); return false; } } if(form.website.value!=''){ if(!form.website.value.match(webExp)){ alert('Website : must be valid'); form.website.focus(); return false; } } if(form.f_title.value==''){ alert('Name of the music film* : required'); form.f_title.focus(); return false; } if(form.countryofproduction.value==''){ alert('Country of production* : required'); form.countryofproduction.focus(); return false; } if(form.runningtime.value==''){ alert('Running time* : required'); form.runningtime.focus(); return false; } if(form.originallanguage.value==''){ alert('Original language* : required'); form.originallanguage.focus(); return false; } return true; }