
/**************************************
* News Scroller Code
**************************************/

//scroller's width
var swidth=250;

//scroller's height
var sheight=300;

//scroller's speed 
var sspeed=50;
var restart=sspeed;
var rspeed=sspeed;

//scroller's pause 
var spause=8000;

//scroller's background
var sbcolor="#FFFFFF";

//messages: set your own; use as many as you'd like; set up Hyperlinks to
//URLs as you normally do: <a target=... href="... URL ...">..message..</a>;
var singletext=new Array();

singletext[0]='<table CELLSPACING="0" CELLPADDING="0" align="center"><tr><td colspan="2" height="20px" valign="middle"><p align="center" style="color: #0000AA; font-size: 16px; font-weight: bold">Congratulations!</p></td></tr><tr><td ><p>&nbsp;</p><p>To our skaters who made the <b>2009 BC/YT Provincial Team:</b></p> <p><center>Cecylia Witkowski<br>Ronald Lam<br>Dylan Archambault<br>Nava Naseri<br>Nasly Naseri</center></p></td></tr></table>';

singletext[1]='<table CELLSPACING="0" CELLPADDING="0" align="center"><tr><td colspan="2" height="20px" valign="middle"><p align="center" style="color: #0000AA; font-size: 16px; font-weight: bold">Congratulations!</p></td></tr><tr><td ><p>&nbsp;</p><p>To our skaters who made the <b>2009 BC/YT Provincial Development Team:</b></p> <p><center>Rebecca Pickles<br>Brianna Delmaestro<br>Katie Pattison<br>Breanne Tai<br>Larissa Horobec<br>Larkyn Austman<br>Gary You</center></p></td></tr></table>';












//-- end Parameters and message -->

//-- begin: Scroller's Algorithm -->
var ii=0;
function goup(){
	if(sspeed!=rspeed*16){
		sspeed=sspeed*2;restart=sspeed;
	}
}

function start(){
if(document.getElementById){
	ns6div=document.getElementById('iens6div');
	ns6div.style.top=sheight+"px";
	ns6div.innerHTML=singletext[0];
	sizeup=ns6div.offsetHeight;
	ns6scroll();
} else if(document.layers){
	ns4layer=document.ns4div.document.ns4div1;
	ns4layer.top=sheight;ns4layer.document.write(singletext[0]);
	ns4layer.document.close();
	sizeup=ns4layer.document.height;
	ns4scroll();
} else if(document.all){
	iediv=iens6div;
	iediv.style.pixelTop=sheight+"px";
	iediv.innerHTML=singletext[0];
	sizeup=iediv.offsetHeight;
	iescroll();
}
}


function iescroll(){
	if(iediv.style.pixelTop>0&&iediv.style.pixelTop<=sspeed){
		iediv.style.pixelTop=0;setTimeout("iescroll()",spause);
	}else if(iediv.style.pixelTop>=sizeup*-1){
		iediv.style.pixelTop-=sspeed+"px";setTimeout("iescroll()",100);
	}else{
		if(ii==singletext.length-1)ii=0;
		else ii++;
		iediv.style.pixelTop=sheight+"px";
		iediv.innerHTML=singletext[ii];
		sizeup=iediv.offsetHeight;
		iescroll();
	}
}

function ns4scroll(){
	if(ns4layer.top>0&&ns4layer.top<=sspeed){
		ns4layer.top=0;setTimeout("ns4scroll()",spause);
	}else if(ns4layer.top>=sizeup*-1){
		ns4layer.top-=sspeed;setTimeout("ns4scroll()",100);
	}else{
		if(ii==singletext.length-1)ii=0;
		else ii++;
		ns4layer.top=sheight;
		ns4layer.document.write(singletext[ii]);
		ns4layer.document.close();
		sizeup=ns4layer.document.height;ns4scroll();
	}
}

function ns6scroll(){
	if(parseInt(ns6div.style.top)>0&&parseInt(ns6div.style.top)<=sspeed){
		ns6div.style.top=0;setTimeout("ns6scroll()",spause);
	}else if(parseInt(ns6div.style.top)>=sizeup*-1){
		ns6div.style.top=parseInt(ns6div.style.top)-sspeed+"px";
		setTimeout("ns6scroll()",100);
	}else{
		if(ii==singletext.length-1)ii=0;
		else ii++;
		ns6div.style.top=sheight+"px";
		ns6div.innerHTML=singletext[ii];
		sizeup=ns6div.offsetHeight;ns6scroll();
	}
}
//-- end Algorithm -->