<!--


function validate()
{
var check1,check2,flag;
var url;
url=window.location.href;
document.query.url.value=url;
flag=true;
var mail=document.query.txtMail.value;

var invalidChar = " *|,\":<>/[]{}`\';()&$#%";

	

if(mail!="")
	{
		check1=mail.indexOf("@");
		check2=mail.indexOf(".");
		if(check1==-1 || check2==-1)
			{
				alert("E-mail???");
				flag=false;
				document.query.txtMail.focus();
				return false;
			}
		if((check1-check2)==1 || (check1-check2)==-1)
			{
				alert("E-Mail??");
				flag=false;
				document.query.txtMail.focus();
				return false;
			}
		
	}

if(mail=="")
{
				alert("E-mail?");
				flag=false;
				document.query.txtMail.focus();
				return false;
}

if(flag==true)
	{
		document.query.submit();
	}
}


// end the hiding comment --> 
