//scroller width
var swidth=160;

//scroller height
var sheight=75;

//background color
var sbcolor='';

//scroller's speed
var sspeed=1;

var newsmsg=''

//Your messages go below:



//End of your messages
// Begin the ticker code

var resumesspeed=sspeed
function start_news() {
	if (document.all) iemarquee(newsticker);
	else if (document.getElementById)
		ns6marquee(document.getElementById('newsticker'));
}

function iemarquee(whichdiv){
	iediv=eval(whichdiv)
	sheight += 20;
	iediv.style.pixelTop=sheight
	iediv.innerHTML=newsmsg
	sizeup=iediv.offsetHeight
	ieslide()
}

function ieslide(){
	if (iediv.style.pixelTop>=sizeup*(-1)){
		iediv.style.pixelTop-=sspeed
		setTimeout("ieslide()",100)
	}
	else{
		iediv.style.pixelTop=sheight
		ieslide()
	}
}

function ns6marquee(whichdiv){
	ns6div=eval(whichdiv)
	sheight += 20;
	ns6div.style.top=sheight + "px";
	ns6div.innerHTML=newsmsg
	sizeup=ns6div.offsetHeight
	ns6slide()
}
function ns6slide(){
	if (parseInt(ns6div.style.top)>=sizeup*(-1)){
		theTop = parseInt(ns6div.style.top)-sspeed
		ns6div.style.top = theTop + "px";
		setTimeout("ns6slide()",100)
	}
	else {
		ns6div.style.top = sheight + "px";
		ns6slide()
	}
}

//scroller width
var Ewidth=160;

//scroller height
var Eheight=70;

//background color
var Ebcolor='';

//scroller's speed
var Espeed=1;

var Emsg=''

//Your messages go below:



//End of your messages
// Begin the ticker code

var resumeEspeed=Espeed
function start_event() {
	if (document.all) Eiemarquee(eventticker);
	else if (document.getElementById)
		Ens6marquee(document.getElementById('eventticker'));
}

function Eiemarquee(whichdiv){
	Eiediv=eval(whichdiv)
	Eheight += 20;
	Eiediv.style.pixelTop=Eheight
	Eiediv.innerHTML=eventmsg
	Esizeup=Eiediv.offsetHeight
	Eieslide()
}

function Eieslide(){
	if (Eiediv.style.pixelTop>=Esizeup*(-1)){
		Eiediv.style.pixelTop-=Espeed
		setTimeout("Eieslide()",100)
	}
	else{
		Eiediv.style.pixelTop=Eheight
		Eieslide()
	}
}

function Ens6marquee(whichdiv){
	Ens6div=eval(whichdiv)
	Eheight += 20;
	Ens6div.style.top=Eheight + "px";
	Ens6div.innerHTML=eventmsg
	Esizeup=Ens6div.offsetHeight
	//alert(Esizeup)
	Ens6slide()
}
function Ens6slide(){
	if (parseInt(Ens6div.style.top)>=Esizeup*(-1)){
		EtheTop = parseInt(Ens6div.style.top)-Espeed
		Ens6div.style.top = EtheTop + "px";
		setTimeout("Ens6slide()",100)
	}
	else {
		Ens6div.style.top = Eheight + "px";
		Ens6slide()
	}
}
