// hides teh things function no_error() { return true; } window.onerror=no_error; function rowOverEffect(object) { if (object.className == 'moduleRow') object.className = 'moduleRowOver'; } function rowOutEffect(object) { if (object.className == 'moduleRowOver') object.className = 'moduleRow'; } function checkBox(object) { document.account_newsletter.elements[object].checked = !document.account_newsletter.elements[object].checked; } function goBack() { window.history.back() } // clear function doClear(theText) { if (theText.value == theText.defaultValue) { theText.value = "" } }