You would also need unique function names and a way of adding to window.onload without overwriting the existing window.onload. This should do it:
Code:
<!--[if IE]>
<IE Download ID="marqueedata1" STYLE="behavior:url(#default#download)" />
<marquee id="externalmarquee1" behavior="scroll" scrollAmount=3 direction=left scrolldelay=1 style="width:758px;height:30px;border:0px solid black;padding:3px" onMouseover='this.stop()' onMouseout='this.start()' src="mistestdashboard/Dashboard%20Data/IVR_News.htm"></marquee>
<script language="JavaScript1.2">
/*
External Data Source Marquee Script (Updated 99/11/02)-
© Dynamic Drive (www.dynamicdrive.com)
For full source code, installation instructions,
100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com
*/
function downloaddata1(){
marqueedata1.startDownload(externalmarquee1.src,displaydata1)
}
function displaydata1(data){
externalmarquee1.innerHTML=data
}
if (window.attachEvent && document.all){
window.attachEvent('onload', downloaddata1);
}
</script>
<![endif]-->
Bookmarks