Blank screen here
You have this in the head
<script language="JavaScript">
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
-->
You are missing the closing tag.
It should be
<script language="JavaScript">
<!--
function SymError()
{
return true;
}
window.onerror = SymError;
-->
</script>
|