/*****************************************************
This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
******************************************************
Insert reset() where and when the marqued fields must
be reset to zero(void,empty)
i.e.
<body onload="reset();">
</body>
*******************************************************/

var submitcount=0;

function reset() {
document.shoutform.sub_message.value="";
}

function checkFields() {

// field validation 
if ( (document.shoutform.sub_message.value=="") ) {
   alert("Please enter your message before pressing SAY.");
   return false;
   }
}
//OEF