Error on page

T

Ted Nesbitt

I have a website www.heathandsherwood64.com that has has five different
errors on the home page dealing with pop up windows. I get the message
Line: 147
Char: 1
Error: Object expected
Code: 0

The other lines are 135, 141, 182, 156
I am pretty sure it has something to do with java script, but I am not good
with that.
Any ideas?
Thanks
Ted
 
R

Ronx

Find this in your code:
}
//-->
onUnload="closePopWin()"<FONT color=#ffffff>&gt;</FONT>
</SCRIPT>
<!--END Pop-up Windows Script------------------------------------------->

</head>
<body>

Rewrite it as:
}
//-->
</SCRIPT>
<!--END Pop-up Windows Script------------------------------------------->

</head>
<body onUnload="closePopWin()">

I have no idea where the <font...> tag is supposed to be, but it should not
be in a script in the <head> section of a page.

Ron
 
R

Ronx

Lines 135, 141 etc. call a JavaScript function named popAddress. This does
not exist on the page.

Ron
 
Top