/*
created by Amit Bagaria Date 4-march 2006
*/
function isValid()
{
	if(!isValidEmail(document.frmcomments.vEmail.value))
	{
		document.frmcomments.vEmail.select();
		return false;
	}
	if(document.frmcomments.vComments.value == "")
	{
		alert("Please Enter Comments");
		document.frmcomments.vComments.focus();
		return false;
	}
}

