//<!--Hide from old browsers
	
	function inputCheck() 
    {
        if (document.announcements.typeHere.value != "") 
        {
			var text=document.announcements.typeHere.value;
			
			if (text.indexOf("fuck") >= 0 ||
			    text.indexOf("shit") >= 0 ||
				text.indexOf("slut") >= 0 ||
				text.indexOf("cunt") >= 0 ||
				text.indexOf("whore") >= 0 ||
				text.indexOf("bitch") >= 0 ||
				text.indexOf("dink") >= 0 ||
				text.indexOf("piss") >= 0 ||
				text.indexOf("asshole") >= 0 ||
				text.indexOf("cocksucker") >= 0 ||
				text.indexOf("tits") >= 0)
			{
				alert("Some of the language you have used in your message may be offensive. No entry to the bulletin board has been made.");
				return false;
			}

			if (text.indexOf("<") >= 0)
			{
				alert("You must enter letters and numbers only. You may NOT enter HTML code.");
				return false;
			}
		}
		else 
		{
			alert("You didn't type anything!  No entry to Announcements has been made.");
			return false;
		}
    }

	function curserPosition()
	{
		document.announcements.typeHere.focus();
	}

//-->
