<!--

// author=Nasir Jamal
//code for validating the Email address

function validate_email()
{
	var email = document.registration.Email
	var em = email.value.indexOf("@" && ".")
	if ((em == -1)||(em == ""))
	{
		errormsg += 'Please enter your valid e-mail address.\n';
		error_email=true;
                if((!error_firstName)&&(!error_lastName))
		{
		email.focus();
		}
	}
		
}

//code for validating email address finishes here

//-->

