//Vertical Scroller v1.2- by Brian of www.ScriptAsylum.com
//Updated for bug fixes
//Visit JavaScript Kit (http://javascriptkit.com) for script
//ENTER CONTENT TO SCROLL BELOW.
var content3='
Busanna Feda O Donaill Intermediate Football Championship
Bundoran V Cloughane..
Busanna Feda O Donaill Junior A Football Championship
Burt V Naomh Ult..
Busanna Feda O Donaill Junior B Football Championship
Naomh Col.. V Naomh Ult..
Busanna Feda O Donaill Intermediate Reserve Football Championship
Cloughane.. V Sean MacC..
Donegal Senior Hurling Championship
MacCumhai.. V Setanta
Brian McCormack Sports Division 1
St Michae.. V Four Mast..
Ardara V Gaoth Dob..
Dungloe V Termon
Naomh Con.. V St. Eunan..
Brian McCormack Sports Division 1 Reserve
St Michae.. V Four Mast..
Ardara V Gaoth Dob..
Dungloe V Termon
Naomh Con.. V St. Eunan..
McGlynns Restaurant Division 2
Killybegs V Aodh Ruad..
McGlynns Restaurant Division 2 Reserve
Killybegs V Aodh Ruad..
Centra Supermarkets Division 3
Naomh Col.. V St Nauls
Moville V Urris
Centra Supermarkets Division 3 Reserve
Naomh Col.. V St Nauls
Marley Coach Hire Division 4
Robert Em.. V Downings
Naomh Col.. V Red Hughs
Marley Coach Hire Division 4 Reserve
Robert Em.. V Downings
Marley Coach Hire Division 5
Aodh Ruad.. V St Michae..
Glenswill.. V Ardara
The Centra U-21 B Football Championship
Red Hughs V Carndonag..
Convoy V Naomh Col..
(Click here for Upcoming Fixtures)
';
var boxheight3=110; // BACKGROUND BOX HEIGHT IN PIXELS.
var boxwidth3=150; // BACKGROUND BOX WIDTH IN PIXELS.
var boxcolor3="FFFFFF"; // BACKGROUND BOX COLOR.
var boxfontfamily3="tahoma";
var boxfontsize3="11px";
var boxfontcolor3="000000";
var boxbordercolor3="FFFFFF";
var descbgcolor3="9C9894";
var descfontcolor3="FFFFFF";
var speed3=60; // SPEED OF SCROLL IN MILLISECONDS (1 SECOND=1000 MILLISECONDS)..
var pixelstep3=1; // PIXELS "STEPS" PER REPITITION.
var godown3=false; // TOP TO BOTTOM=TRUE , BOTTOM TO TOP=FALSE
var init3 = false;
// DO NOT EDIT BEYOND THIS POINT
var outer3,inner3,elementheight3,ref3,refX3,refY3;
var w3c3=(document.getElementById)?true:false;
var ns43=(document.layers)?true:false;
var ie43=(document.all && !w3c3)?true:false;
var ie53=(document.all && w3c3)?true:false;
var ns63=(w3c3 && navigator.appName.indexOf("Netscape")>=0)?true:false;
var txt3='';
txt3+='';
if(ns43){
txt3+=''
txt3+='';
txt3+=''+content3+'';
txt3+='';
}else{
txt3+='Fixtures
';
txt3+='';
txt3+='Click here for Fixtures
';
txt3+='';
txt3+='
'+content3+'
';
txt3+='
';
}
document.getElementById('scroller1a').innerHTML = txt3;function getElHeight3(el){
if(ns43)return (el.document.height)? el.document.height : el.clip.bottom-el.clip.top;
else if(ie43||ie53)return (el.style.height)? el.style.height : el.clientHeight;
else return (el.style.height)? parseInt(el.style.height):parseInt(el.offsetHeight);
}
function getPageLeft3(el){
var x3;
if(ns43)return el.pageX;
if(ie43||w3c3){
x3 = 0;
while(el.offsetParent!=null){
x3+=el.offsetLeft;
el=el.offsetParent;
}
x3+=el.offsetLeft;
return x3;
}}
function getPageTop3(el){
var y3;
if(ns43)return el.pageY;
if(ie43||w3c3){
y3=0;
while(el.offsetParent!=null){
y3+=el.offsetTop;
el=el.offsetParent;
}
y3+=el.offsetTop;
return y3;
}}
function scrollbox3(){
if(ns43){
inner3.top+=(godown3)? pixelstep3: -pixelstep3;
if(godown3){
if(inner3.top>boxheight3)inner3.top=-elementheight3;
}else{
if(inner3.top<2-elementheight3)inner3.top=boxheight3+2;
}}else{
inner3.style.top=parseInt(inner3.style.top)+((godown3)? pixelstep3: -pixelstep3)+'px';
if(godown3){
if(parseInt(inner3.style.top)>boxheight3)inner3.style.top=-elementheight3+'px';
}else{
if(parseInt(inner3.style.top)<2-elementheight3)inner3.style.top=boxheight3+2+'px';
}}}
window.onresize=function(){
if(ns43)setTimeout('history.go(0)', 400);
else{
outer3.style.left=getPageLeft3(ref3)+'px';
outer3.style.top=getPageTop3(ref3)+'px';
}}
function start3()
{
if(!init3)
{
outer3=(ns43)?document.layers['outer3']:(ie43)?document.all['outer3']:document.getElementById('outer3');
inner3=(ns43)?outer.document.layers['inner3']:(ie43)?document.all['inner3']:document.getElementById('inner3');
ref3=(ns43)?document.layers['ref3']:(ie43)?document.all['ref3']:document.getElementById('ref3');
elementheight3=getElHeight3(inner3);
if(ns43){
outer3.moveTo(getPageLeft3(ref3),getPageTop3(ref3));
outer3.clip.width=boxwidth3;
outer3.clip.height=boxheight3;
inner3.top=(godown3)? -elementheight3 : boxheight3-2;
inner3.clip.width=boxwidth3-4;
inner3.clip.height=elementheight3;
outer3.visibility="show";
inner3.visibility="show";
}else{
outer3.style.left=getPageLeft3(ref3)+'px';
outer3.style.top=getPageTop3(ref3)+'px';
inner3.style.top=((godown3)? -elementheight3 : boxheight3)+'px';
inner3.style.clip='rect(0px, '+(boxwidth3-4)+'px, '+(elementheight3)+'px, 0px)';
outer3.style.visibility="visible";
init3 = true;
setInterval('start3()',100000000);
}
}
}
//start3();setInterval('scrollbox3()',speed3);
//setInterval('start3()',1);
//setInterval('scrollbox3()',speed3);