var marqueewidth="774px"
var marqueeheight="14px"
var marqueespeed=2
var marqueecontent='<nobr><font face="Arial, Verdana, sans-serif" size="1" color="white">New: special version of SPOS released for short sea shipping</font></nobr>'
marqueespeed=(document.all)? marqueespeed : Math.max(1, marqueespeed-1) //slow speed down by 1 for NS

document.write('<span id="temp" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontent+'</span>')
	
var actualwidth=''
var cross_marquee

function populate() {
	cross_marquee=document.getElementById? document.getElementById("iemarquee") : document.all.iemarquee
	cross_marquee.style.left=parseInt(marqueewidth)+8+"px"
	cross_marquee.innerHTML=marqueecontent
	actualwidth=document.all? temp.offsetWidth : document.getElementById("temp").offsetWidth

	lefttime=setInterval("scrollmarquee()",20)
}

window.onload=populate

function scrollmarquee() {
	if (parseInt(cross_marquee.style.left)>2)
		cross_marquee.style.left=parseInt(cross_marquee.style.left)-marqueespeed+"px"
}


with (document) {
	document.write('<table border="0" cellspacing="0" cellpadding="0"><td>')
	write('<div style="position:relative;width:'+marqueewidth+';height:'+marqueeheight+';overflow:hidden">')
	write('<div style="position:absolute;width:'+marqueewidth+';height:'+marqueeheight+'">')
	write('<div id="iemarquee" style="position:absolute;left:0px;top:0px"></div>')
	write('</div></div>')
	
	document.write('</td></table>')
}
