function averify(f)
{
var rcode=true;
msg="";

if ((f.frmH2.value == null) || (f.frmH2.value == ""))
	{
	msg+="ANN_H2 is required.\n";
	rcode=false;
    }

var strText = f.frmText.value;
if ((strText == null) || (strText == ""))
	{
	msg+="ANN_Text is required.\n";
    rcode=false;
    }

//if (strText.length > 2500) {
//	msg+="ANN_Text is more that 2500 characters.";
//    rcode=false;
//}

if(msg != "") 
	{
    msg+="\nPlease fill in these required field(s),\n   then re-submit this form.\n";
	alert(msg);
    }
    return rcode;
}