var timer;var amount=2;var stoped=false;function initMarquee(id){if(document.getElementById(id)){if((navigator.appName=="Microsoft Internet Explorer")&&(parseInt(navigator.appVersion)>=3)){document.getElementById(id).scrollAmount=document.getElementById(id).clientWidth}else{document.getElementById(id).scrollAmount=amount}}}function startMarquee(id){var obj=document.getElementById(id);obj.scrollAmount=amount;obj.start();clearTimeout(timer);stoped=true;obj.onscroll=function(){scrolling(this)}}function scrollMarquee(obj,waitTime){if(!stoped&&obj.scrollLeft<=obj.clientWidth){obj.stop();timer=setTimeout("startMarquee('"+obj.id+"')",waitTime)}}function scrolling(obj){obj.stop();obj.scrollAmount=amount;obj.start()}