<!--
function OpenGlossary(c) {
var page = "http://www.usingenglish.com/showdef.php?p=" + c;
window.open(page, '', 'width=480,height=480,scrollbars=yes,status=yes');
}
function openNewWindow(url) {
newWindow=window.open(url,"linkWindow");
}
function ShowHelp(file) {
window.open('/help/'+file+'.html','EANITHING','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=yes,width=600,height=600');
}
function PrintablePage(url) {
window.open(url,'UEPrintablePage','toolbar=no,location=no,directories=no,status=no,menubar=yes,resizable=yes,copyhistory=no,scrollbars=yes,width=600,height=600');
}
<!-- Dynamic Version by: Nannette Thacker -->
<!-- http://www.shiningstar.net -->
<!-- Original by :  Ronnie T. Moore -->
<!-- Web Site:  The JavaScript Source -->
<!-- Use one function for multiple text areas on a page -->
<!-- Limit the number of characters per textarea -->
<!-- Begin
function textCounter(field,cntfield,maxlimit) {
if (field.value.length > maxlimit) // if too long...trim it!
field.value = field.value.substring(0, maxlimit);
// otherwise, update 'characters left' counter
else
cntfield.value = maxlimit - field.value.length;
}
//  End -->
-->