// JavaScript Document
function validate_contribute(thisform)
{
	with (thisform)
	{
		var msg = thisform.message.value;
		if(msg.search("<") >= 0 && msg.search(">") >= 0)
		{
			alert("Please remove HTML tags in the message");
			return false;
		}
		var msg = thisform.name.value;
		if(msg.search("<") >= 0 && msg.search(">") >= 0)
		{
			alert("Please remove HTML tags in the message");
			return false;
		}
	}
	return true;
}