<!--
function stopErrors() 
 {
  return true;
 }
 window.onerror = stopErrors;
// -->
<!-- http://javascript.internet.com -->
<!-- Begin
function checkrequired(which) {
var pass=true;
if (document.images) {
for (i=0;i<which.length;i++) {
var tempobj=which.elements[i];
if (tempobj.name.substring(0,2)=="rq") {
if (((tempobj.type=="text"||tempobj.type=="textarea")&&
tempobj.value==' ')||(tempobj.type.toString().charAt(0)=="s"&&
tempobj.selectedIndex==0)) {
pass=false;
break;
   }
  }
 }
}
if (!pass) {
shortFieldName=tempobj.name.substring(3,30).toUpperCase();
alert("Please make sure the "+shortFieldName+"field is properly completed.");
return false;
}
else
{
which.Submit.value = "Sending..";
}
{
which.Submit.disabled = true;
}
{
which.Reset.disabled = true;
}
return true;
}
//  End -->
<!-- Anti-spam
function disable_enable(){
if (document.getElementById('form').Submit.disabled==true)
document.getElementById('form').Submit.disabled=false
else
document.test1.test2.disabled=true;
alert("Ready to submit");
}
//  End -->