I want to implement a pop-windows into the following script, but it doesnt work. Does anyone know what part of coding is wrong; it works without pop windows, just not when I have them in.
Heres the script;
<head>
<p><br>
<style type="text/css">
<!--
body {
background-image:'http://www.itsmysite.com/brit/images/Sophie_Ellis-Bextor_02.jpg';
background-repeat:no-repeat;
}
A {text-decoration:none;}
A:link,A:visited {color: #FF99CC;}
A:hover,A:active {color: #FF0000;}
//-->
</style>
</head>
<body><script language="JavaScript1.2">
/*
Cross browser Marquee II- © Dynamic Drive (
www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and TOS, visit
http://www.dynamicdrive.com
Credit MUST stay intact
*/
//Specify the marquee's width (in pixels)
var marqueewidth="640px"
//Specify the marquee's height
var marqueeheight="175px"
//Specify the marquee's marquee speed (larger is faster 1-10)
var marqueespeed=1
//Pause marquee onMousever (0=no. 1=yes)?
var pauseit=1
//Specify the marquee's content
//Keep all content on ONE line, and backslash any single quotations (ie: that's great):
var marqueecontent='<font face="Verdana"color="#FF99CC"><p><br><p><br><p><br >text,etc...<a href="
http://www.yahoo.com" onClick="MyWindow=window.open('http://www.yahoo.com','MyWindow','toolbar=yes,location=ye s,directories=yes,status=yes,menubar=yes,scrollbar s=yes,resizable=yes,width=600,height=300'); return false;">yahoo</a></font>'
Thanks!!