<!-- Copyright (c) 1998 Online Web Solutions -->
<!-- Web Site:  http://www.online-web-solutions.com -->


<!-- Begin
function checkChar(formObj) {
              formObj.char_count.value = formObj.description.value.length + '/200'; 
              if (formObj.description.value.length > 200) {
                formObj.char_msg.value = 'Over 200 Characters'; 
              } else { 
                formObj.char_msg.value = ''; 
              }
            }
// End -->
