<!-- hide me
/*
Cross browser Marquee script- &copy; Dynamic Drive (www.dynamicdrive.com)
For full source code, 100's more DHTML scripts, and Terms Of Use, visit http://www.dynamicdrive.com
*/

//Specify the marquee's width (in pixels)
var marqueewidthex="400px"
//Specify the marquee's height
var marqueeheightex="18px"
//configure background color:
var marqueebgcolorex="#ffffff"
//configure scrolling text:
var marqueecontentex='<nobr>Come and visit us at our next exhibit; Instrumentation Scotland &#38; Offshore Systems 2010 between the 08/09/2010 and the 09/09/2010 at the Aberdeen Exhibition &#38; Conference Centre.   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Sensor Technology Ltd&nbsp;-&nbsp;Manufacturing Quality Products Since 1976&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</nobr>'
////NO NEED TO EDIT BELOW THIS LINE////////////
var copyspeedex=(document.all)? 1 : Math.max(1, 1-1) //slow speed down by 1 for NS
var iedomex=document.all||document.getElementById
if (iedomex)
document.write('<span id="tempex" style="visibility:hidden;position:absolute;top:-100px;left:-9000px">'+marqueecontentex+'</span>')
var actualwidthex=''
var cross_marqueeex, ns_marqueeex

function populateex(){
if (iedomex){
cross_marqueeex=document.getElementById? document.getElementById("iemarqueeex") : document.all.iemarqueeex
cross_marqueeex.style.left=parseInt(marqueewidthex)+8+"px"
cross_marqueeex.innerHTML=marqueecontentex
actualwidthex=document.all? tempex.offsetWidth : document.getElementById("tempex").offsetWidth
}
else if (document.layers){
ns_marqueeex=document.ns_marqueeex.document.ns_marqueeex2
ns_marqueeex.left=parseInt(marqueewidthex)+8
ns_marqueeex.document.write(marqueecontentex)
ns_marqueeex.document.close()
actualwidthex=ns_marqueeex.document.width
}
lefttime=setInterval("scrollmarqueeex()",20)
}

function scrollmarqueeex(){
if (iedomex){
if (parseInt(cross_marqueeex.style.left)>(actualwidthex*(-1)+8))
cross_marqueeex.style.left=parseInt(cross_marqueeex.style.left)-copyspeedex+"px"
else
cross_marqueeex.style.left=parseInt(marqueewidthex)+8+"px"

}
else if (document.layers){
if (ns_marqueeex.left>(actualwidthex*(-1)+8))
ns_marqueeex.left-=copyspeedex
else
ns_marqueeex.left=parseInt(marqueewidthex)+8
}
}

if (iedomex||document.layers){
with (document){
if (iedomex){
write('<div style="position:relative;width:'+marqueewidthex+';height:'+marqueeheightex+';overflow:hidden">')
write('<div style="position:absolute;width:'+marqueewidthex+';height:'+marqueeheightex+';background-color:'+marqueebgcolorex+'">')
write('<div id="iemarqueeex" style="position:absolute;left:0px;top:0px"></div>')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+marqueewidthex+' height='+marqueeheightex+' name="ns_marqueeex" bgColor='+marqueebgcolorex+'>')
write('<layer name="ns_marqueeex2" left=0 top=0></layer>')
write('</ilayer>')
}
}
}
//-->