function verify()
{
	var strcomment;
	strcomment=document.frmComments.comment.value;
	strcomment.toLowerCase();
	
	if(document.frmComments.uname.value=="")
	{
		alert("Please give your Username");
		document.frmComments.uname.focus();
		return false;
	}
	if(document.frmComments.comment.value=="")
	{
		alert("Please give some Comment");	
		document.frmComments.comment.focus();
		return false;
	}
	if(strcomment.search(/<script/i)!=-1)
	{
		alert("Don't try to post Script");
		document.frmComments.comment.focus();
		return false;		
	}
	if(strcomment.search(/<a/i)!=-1)
	{
		alert("Don't try to Spam");
		document.frmComments.comment.focus();
		return false;		
	}	
	if((strcomment.indexOf(".com")!=-1))
	{
		alert ("Don't try to post Website Link");
		document.frmComments.comment.focus();
		return false;		
	}	
}

function plzlogin()
{
	alert("Kindly login to use this feature, & if you havent registered yet please Register.");	
}