<!--
function dosearch()
{
if(window.document.forms.searchform.searchterm.value=="")
{window.alert("SEARCH ERROR\n\nPlease enter a word or phrase to search for.....");}
else
{window.document.forms.searchform.submit();}
}

function MM_displayStatusMsg(msgStr)
 {
  status=msgStr;
  document.MM_returnValue = true;
}

function validate()
{
if(window.document.forms.dataform.subject.value=="")
{window.alert("MESSAGE ERROR\n\nPlease enter a subject.....");}
else if(window.document.forms.dataform.message.value=="")
{window.alert("MESSAGE ERROR\n\nPlease enter your message.....");}
else if(window.document.forms.dataform.postername.value=="")
{window.alert("MESSAGE ERROR\n\nPlease enter your name.....");}
else if(window.document.forms.dataform.posteremail.value=="")
{window.alert("MESSAGE ERROR\n\nPlease enter your email address.....");}
else
{window.document.forms.dataform.submit();}
}
//-->