function Validate (form){

v1=form.name

if(isblank(v1)==false) {

		alert("Name field cannot be Blank");

		v1.focus(); 

	return false
}
	
v1=form.email

if(isblank(v1)==false) {

	alert("Email field cannot be blank");

	v1.focus(); 

	return false;
}

if(isemail(v1)==false) {

alert("The email \""+ v1.value+" \"is not valid email");

v1.focus(); 

return false;
}


v1=form.experience

if(isblank(v1)==false) {

		alert("Please fill your experience");

		v1.focus(); 

	return false
}

v1=form.company

if(isblank(v1)==false) {

		alert("Please fill your company");

		v1.focus(); 

	return false
}

v1=form.designation

if(isblank(v1)==false) {

		alert("Please fill your designation");

		v1.focus(); 

	return false
}

v1=form.qualification

if(isblank(v1)==false) {

		alert("Please fill your qualification");

		v1.focus(); 

	return false
}
 
v1=form.ctc

if(isblank(v1)==false) {

		alert("Please fill your ctc");

		v1.focus(); 

	return false
}

 

v1=form.salary

if(isblank(v1)==false) {

		alert("Please fill your salary");

		v1.focus(); 

	return false
}


v1=form.hobbies

if(isblank(v1)==false) {

		alert("Please fill your hobbies");

		v1.focus(); 

	return false
}


}

function isyouremail(s2) {

if ((s2.value == "" || s2.value.indexOf('@', 0) == -1) || s2.value.indexOf('.')<5) {

	return false
	}

else {

	return true
	}
}

