function checkLength(oArea, iMaxLength, DisplayLength) {
     if( oArea.value.length > iMaxLength )
       oArea.value = oArea.value.substring(0,iMaxLength);
       document.getElementById(DisplayLength).childNodes[0].nodeValue = oArea.value.length;
}
