<!--
function reportvalid(reportform) 
{
var submit_accepted = false;
var chk_val = true;

    if (submit_accepted)  // prevents NN4 resubmission
        return(false);

var AllowedChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz_01234567890"
var AllowedNumbers = "0123456789"

// Start checking email
/*	if(reportform.email.value == "")
 		{
		alert("Please enter E-mail")
		document.reportform.email.focus()
		return false
		}
 	if(reportform.email.value.indexOf("@") == -1)
	 	{
	 	alert("E-mail is wrong. Re-type e-mail address.")
	 	document.reportform.email.select()
	 	document.reportform.email.focus()
	 	return false
  	 	}
// End checking email
*/

// Start checking report type

if(document.reportform.selectrep.value == "")
		{  alert("Please Select Report Type.")
			document.reportform.selectrep.focus()
			return false
		}

// end checking Report Type

// Start checking desc
if(document.reportform.reportdesc.value == "")
		{  alert("Please Enter Description.")
			document.reportform.reportdesc.focus()
			return false
		}

// end checking desc

if (chk_val)
        reportform.p_js_on.value = 1;

    //reportform.cmdReport.disabled = chk_val;
    submit_accepted = chk_val;


return (chk_val);
  }
	
	function countLetter(thisform)
{
  var charcount = 0;
  var charcount = thisform.reportdesc.value.length;
  thisform.char_count.value = charcount;
}

// STOP HIDING FROM OTHER BROWSERS -->
