<!--//function to display or hide a given elementfunction showHideItems(myItem){//this is the ID of the hidden itemvar myItem = document.getElementById(myItem);myItem.style.display = "";//myItem.style.display = "none";}var myTimer;var newLength;var newBox;var maxChars;function checkLength(tlength,divbox,maxc) {newLength = tlength;newBox = divbox;maxChars = maxc;if (newLength.value.length > maxChars) { showHideItems(newBox); clearTimeout(myTimer); }myTimer = setTimeout('checkLength(newLength,newBox,maxChars)', 100);}// -->
