function calAsset(str)
{
	word=new Array('sex','porn',"http","erotic","fuck","lesbian","xxx");
	str=str.toLowerCase();
	chk=false;
	for(i=0;i<word.length;i++)
	{
		if (str.indexOf(word[i])>=0)
			chk=true;
	}
	return chk;
}
