// JavaScript Document
	function openWin2()
	{
	windq=window.open("","tf","menubar=no,toolbar=no,width=500,height=350,scrollbars=no");
	windq.focus();
	}
function CheckTellFriend()
{
	if(document.TellFriend.ymail.value=="" || document.TellFriend.ymail.value.indexOf("@")==-1 || document.TellFriend.ymail.value.indexOf(".")==-1)
	{
	alert("Please enter your valid e-mail ID");
	document.TellFriend.ymail.focus();
	return false;
	}
		if(document.TellFriend.fmail.value=="" || document.TellFriend.fmail.value.indexOf("@")==-1 || document.TellFriend.fmail.value.indexOf(".")==-1)
		{
		alert("Please enter your friend's valid e-mail address, Separate e-mail addresses by commas to send it to more friends")
		document.TellFriend.fmail.focus();
		return false;
		}
			if(document.TellFriend.comment.value=="")
			{
			alert("Enter your comments about this site");
			document.TellFriend.comment.focus();
			return false;
			}
openWin2();
return true;
}

function CheckMailID()
{
	if(document.subscribe.email.value.indexOf("@")==-1 || document.subscribe2.email.value.indexOf(".")==-1)
	{
	alert("Please enter your valid e-mail address");
	document.subscribe.email.focus();
	return false;
	}
	openWin2();
return true;
}