function gohere(url) { window.location.href=url; } //************************************ function changeitover(tr) { if (tr.className=='tdhoveroff') { tr.className='tdhoveron'; } } //************************************ function changeitout(tr) { if (tr.className=='tdhoveron') { tr.className='tdhoveroff'; } } //************************************ function changeitoverm(tr) { if (tr.className=='tdhoveroffm') { tr.className='tdhoveronm'; } } //************************************ function changeitoutm(tr) { if (tr.className=='tdhoveronm') { tr.className='tdhoveroffm'; } } //************************************************************** /* Alert-It Scroller script- By JavaScript Kit For this and over 400+ free scripts, visit http://www.javascriptkit.com This notice must stay intact */ //Customize your message here. Use any HTML desired: var themsg='British Precast Annual Conference, Building Excellence in Precast, 13th May. - ' var speed=4 //speed of scroller (1-10 or more) var loops=5000 //specify number of times message scrolls across screen (an integer or "infinite") function populatescroller(){ var windowwidth=iecompattest().clientWidth document.getElementById("alertit").innerHTML=themsg document.getElementById("alertit").style.width=550 document.getElementById("alertit").scrollAmount=speed document.getElementById("alertit").scrollDelay=20 document.getElementById("alertit").loop=loops document.getElementById("alertit").onfinish=function(){ document.getElementById("alertit").style.visibility="hidden" } } function iecompattest(){ return (document.compatMode!="BackCompat")? document.documentElement : document.body } if (document.all && document.getElementById){ window.onload=populatescroller window.onresize=populatescroller }