//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 content2='
Barrett Electrics u 13 B1
| Castledaw.. | | Desertmar.. |
| 6-22 | | 1-3 |
Barrett Electrics u 13 B2
| Claudy | | Doire Tra.. |
| 2-16 | | 0-4 |
Barretts Electric u13 B3
| Faughanva.. | | Doire Col.. |
| 6-15 | | 2-3 |
Barretts Electric U13 B 4
| Slaughtma.. | | Sean Dola.. |
| - | | - |
| Banagher | | Glenullin |
| 1-15 | | 1-9 |
Barretts Electric u 13 B5
| Ballinder.. | | Lissan |
| 2-4 | | 3-2 |
| Ballinasc.. | | Greenloug.. |
| 3-9 | | 0-2 |
Barretts Electric U13 B6
| Faughanva.. | | Limavady |
| 2-8 | | 5-16 |
| Ballerin | | Ballymagu.. |
| 7-8 | | 0-2 |
Minor A League
Minor B League 1
Minor Hurling Championship
| Swatragh | | Ballinasc.. |
| 1-5 | | 0-6 |
Minor Hurling League
| Slaughtne.. | | Banagher |
| 2-17 | | 2-9 |
| Kevin Lyn.. | | Ballinasc.. |
| - | | - |
Under 16 A League 1
| Magherafe.. | | Slaughtne.. |
| - | | - |
Under 16 A League 2
| Ballinasc.. | | Slaughtma.. |
| 4-5 | | 2-4 |
| Slaughtma.. | | Claudy |
| 1-5 | | 1-8 |
| Ballinder.. | | Sean Dola.. |
| - | | - |
| Loup | | Ballinasc.. |
| 5-7 | | 2-10 |
Under 16 (15 a side)
| Doire Tra.. | | Coleraine |
| 1-9 | | 5-9 |
| Steelstow.. | | Doire Tra.. |
| 5-12 | | 0-5 |
Under 16 1A 12 a side
Under 14 A League
| Bellaghy | | Slaughtne.. |
| 8-14 | | 6-3 |
Under 14 B2 League
Under 14 C 11aside Group 2
(Click here for Recent Results)
';
var boxheight2=110; // BACKGROUND BOX HEIGHT IN PIXELS.
var boxwidth2=150; // BACKGROUND BOX WIDTH IN PIXELS.
var boxcolor2="FFFFFF"; // BACKGROUND BOX COLOR.
var boxfontfamily2="tahoma";
var boxfontsize2="11px";
var boxfontcolor2="000000";
var boxbordercolor2="FFFFFF";
var descbgcolor2="9C9894";
var descfontcolor2="FFFFFF";
var speed2=60; // SPEED OF SCROLL IN MILLISECONDS (1 SECOND=1000 MILLISECONDS)..
var pixelstep2=1; // PIXELS "STEPS" PER REPITITION.
var godown2=false; // TOP TO BOTTOM=TRUE , BOTTOM TO TOP=FALSE
var init2 = false;
// DO NOT EDIT BEYOND THIS POINT
var outer2,inner2,elementheight2,ref2,refX2,refY2;
var w3c2=(document.getElementById)?true:false;
var ns42=(document.layers)?true:false;
var ie42=(document.all && !w3c2)?true:false;
var ie52=(document.all && w3c2)?true:false;
var ns62=(w3c2 && navigator.appName.indexOf("Netscape")>=0)?true:false;
var txt2='';
txt2+='';
if(ns42){
txt2+=''
txt2+='';
txt2+=''+content2+'';
txt2+='';
}else{
txt2+='Results
';
txt2+='';
txt2+='Click here for Results
';
txt2+='';
txt2+='
'+content2+'
';
txt2+='
';
}
document.getElementById('scroller2a').innerHTML = txt2;function getElHeight2(el){
if(ns42)return (el.document.height)? el.document.height : el.clip.bottom-el.clip.top;
else if(ie42||ie52)return (el.style.height)? el.style.height : el.clientHeight;
else return (el.style.height)? parseInt(el.style.height):parseInt(el.offsetHeight);
}
function getPageLeft2(el){
var x2;
if(ns42)return el.pageX;
if(ie42||w3c2){
x2 = 0;
while(el.offsetParent!=null){
x2+=el.offsetLeft;
el=el.offsetParent;
}
x2+=el.offsetLeft;
return x2;
}}
function getPageTop2(el){
var y2;
if(ns42)return el.pageY;
if(ie42||w3c2){
y2=0;
while(el.offsetParent!=null){
y2+=el.offsetTop;
el=el.offsetParent;
}
y2+=el.offsetTop;
return y2;
}}
function scrollbox2(){
if(ns42){
inner2.top+=(godown2)? pixelstep2: -pixelstep2;
if(godown2){
if(inner2.top>boxheight2)inner2.top=-elementheight2;
}else{
if(inner2.top<2-elementheight2)inner2.top=boxheight2+2;
}}else{
inner2.style.top=parseInt(inner2.style.top)+((godown2)? pixelstep2: -pixelstep2)+'px';
if(godown2){
if(parseInt(inner2.style.top)>boxheight2)inner2.style.top=-elementheight2+'px';
}else{
if(parseInt(inner2.style.top)<2-elementheight2)inner2.style.top=boxheight2+2+'px';
}}}
window.onresize=function(){
if(ns42)setTimeout('history.go(0)', 400);
else{
outer2.style.left=getPageLeft2(ref2)+'px';
outer2.style.top=getPageTop2(ref2)+'px';
}}
function start2()
{
if(!init2)
{
outer2=(ns42)?document.layers['outer2']:(ie42)?document.all['outer2']:document.getElementById('outer2');
inner2=(ns42)?outer.document.layers['inner2']:(ie42)?document.all['inner2']:document.getElementById('inner2');
ref2=(ns42)?document.layers['ref2']:(ie42)?document.all['ref2']:document.getElementById('ref2');
elementheight2=getElHeight2(inner2);
if(ns42){
outer2.moveTo(getPageLeft2(ref2),getPageTop2(ref2));
outer2.clip.width=boxwidth2;
outer2.clip.height=boxheight2;
inner2.top=(godown2)? -elementheight2 : boxheight2-2;
inner2.clip.width=boxwidth2-4;
inner2.clip.height=elementheight2;
outer2.visibility="show";
inner2.visibility="show";
}else{
outer2.style.left=getPageLeft2(ref2)+'px';
outer2.style.top=getPageTop2(ref2)+'px';
inner2.style.top=((godown2)? -elementheight2 : boxheight2)+'px';
inner2.style.clip='rect(0px, '+(boxwidth2-4)+'px, '+(elementheight2)+'px, 0px)';
outer2.style.visibility="visible";
init2 = true;
setInterval('start2()',100000000);
}
}
}
//start2();setInterval('scrollbox2()',speed2);
//setInterval('start2()',1);
//setInterval('scrollbox2()',speed2);