function Validate(form)
{

v1=form.Name
	if(isblank(v1)==false) 
	{
	alert("Name Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.Sex
	if(isblank(v1)==false) 
	{
	alert("Sex Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.DD
	if(isblank(v1)==false) 
	{
	alert("Date Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.MM
	if(isblank(v1)==false) 
	{
	alert("Month Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.year
	if(isblank(v1)==false) 
	{
	alert("year Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.Hrs
	if(isblank(v1)==false) 
	{
	alert("Hrs Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.Min
	if(isblank(v1)==false) 
	{
	alert("Min Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.Sec
	if(isblank(v1)==false) 
	{
	alert("Sec Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.Tms
	if(isblank(v1)==false) 
	{
	alert("Tms Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.Pob
	if(isblank(v1)==false) 
	{
	alert("Place of Birth Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	


v1=form.Email
	if(isblank(v1)==false) 
	{
	alert("Your Email Field Can not 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.country
	if(isblank(v1)==false) 
	{
	alert("Country Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.language
	if(isblank(v1)==false) 
	{
	alert("Language Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	
	


	
	

	return true;
}

function isblank(s3) 
{
	if (s3.value == "") 
	{
	return false
	}
else 
	{
	return true
   }
}

function isEmail(s2) 
{
	if ((s2.value == "" || s2.value.indexOf('@', 0) == -1) || s2.value.indexOf('.')<5) {
	return false
}
else {
	return true
   }

}


