var para ="";
function validate_bulletin(theForm)
{
  if (theForm.SBulletin.value == ""){
    alert("Please specify your subject for this message.");
    theForm.SBulletin.focus();
    return (false);
  }
  
  if (isBadWord(theForm.SBulletin.value)){
  	 theForm.SBulletin.focus();
  	 return (false);
  }	
  
	if (theForm.SBulletin.value.length > 250)
  {
    alert("Please put a maximum of 250 characters only on the you subject.");
    theForm.SBulletin.focus();
    return (false);
  }
  para="b="+encodeURI(theForm.SBulletin.value);
  return (true);
}
