//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='
Intermediate Football Championship

Ballymore V Carricked..


Junior Football Championship

Ballymaho.. V Carricked..


Junior B Football Championship

Abbeylara V Mostrim


ACFL Div 1

Fr Mannin.. V Clonguish
Mostrim V Cashel
Ballymaho.. V Longford ..
Abbeylara V St Marys
Colmcille V Sean Conn..


ACFL Div 2

Legan Sar.. V Moydow Ha..
Grattan O.. V St Munis


ACFL Div 3

Mostrim V Clonguish
Dromard V Longford ..


ACFL Div 4

St Brigid.. V Rathcline


Minor A Football Championship

St Vincen.. V Killoe
Northern .. V Longford ..


Minor Football League Division 2A

Shannon G.. V Southern ..


Minor Football League Division 2B

St Colmci.. V Granard/B..


Juvenile U-16 A Football Championship

Northern .. V St Vincen..
Granard/B.. V Killoe
Clonguish.. V St James


Juvenile U-16 C Football Championship

St Franci.. V Ballymaho..


U-14 A Football Championship

Clonguish.. V Northern ..


(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+='
' txt3+=''; txt3+=''+content3+''; txt3+=''; }else{ txt3+='
Fixtures
'; txt3+='
'; txt3+='
Click here for Fixtures
'; 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);