javascript question
From Kyle Finch at G2Search for Financial Professionals
on 18 Dec '00
-
First off I'm using FP2000 (strike one). I have a shared border that is applied to most of the pages on this site. In the navigation bar at the very top I have several links. The one that say's "Mailing List" is giving me grief. I want this to operate a new_window function. I also have mouseovers in this border. The code reads like this:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Shared Top Border</title>
<script language="JavaScript1.2" fptype="dynamicanimation" src="../animate.js">
<!--BEGIN Script
function dynAnimation() {}
function clickSwapImg() {}
function new_window(url) {
link =
window.open(url,"Link","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,
width=210,height=260,left=100,top=200");
}
//END Script-->
</script>
<meta name="Microsoft Border" content="none">
</head>
Do you see any reason why I get an "Error" on this page?
|