
var marqueewidth=500 //marquee's width
var marqueeheight=20 //marquee's height
var speed=3 //scroll speed (larger is faster)

function marq(content) { 
if (document.all) {
	document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'"><font class=tiquer>'+content+'</font></marquee>');
}
}

function intializemarquee(){ 

if (document.layers) {

	document.cmarquee01.document.cmarquee02.document.write('<font class=tiquer><nobr>'+m1+'</nobr></font>');
	document.cmarquee01.document.cmarquee02.document.close();
	thelength=document.cmarquee01.document.cmarquee02.document.width;
	scrollit()
	}

}

function scrollit(){ 
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth
scrollit()
}
}
