Not sure where to post this, so I decided to post it here with my template. I've created a new module, and hit the HTML button to bring up the HTML editor then posted soem HTML with the following code:<script type="text/javascript"> function displayRow(thisrow)
{ var row = document.getElementById(thisrow);
if (row.style.display == '') row.style.display = 'none';
else row.style.display = '';
}
</script>
The code works fine. I can post the regular page with what I need, but when I try to put it in a module I get nothing. Any thoughts or suggestions would be great. Thanks guys.