var scrollercontentN=''

if (window.XMLHttpRequest)
  {// code for IE7+, Firefox, Chrome, Opera, Safari
  xmlhttpN=new XMLHttpRequest();
  }
else
  {// code for IE6, IE5
  xmlhttpN=new ActiveXObject("Microsoft.XMLHTTP");
  }
xmlhttpN.onreadystatechange=function()
  {
	
  if (xmlhttpN.readyState==4 && xmlhttpN.status==200)
    {
		scrollercontentN=xmlhttpN.responseText;
		populateN();
    }
  }

xmlhttpN.open("GET","ajaxrequests.asp?ids=NWSDEFNSDIFJ",true);
xmlhttpN.send();


// Distributed by http://www.hypergurl.com
 
// Scrollers width here (in pixels)
var scrollerwidth="240px"
 
// Scrollers height here
var scrollerheight="160px"
 
// Scrollers speed here (larger is faster 1-10)
var scrollerspeedN=1
 
 
 
// Scrollers content goes here! Keep all of the message on the same line!
 
 

 
var pauseitN=1
 
 
// Change nothing below!
 
scrollerspeedN=(document.all)? scrollerspeedN : Math.max(1, scrollerspeedN-1) //slow speed down by 1 for NS
var copyspeedN=scrollerspeedN
var iedom=document.all||document.getElementById
var actualheightN=''
var cross_scrollerN, ns_scrollerN
var pausespeedN=(pauseitN==0)? copyspeedN: 0
 
function populateN(){
if (iedom){
cross_scrollerN=document.getElementById? document.getElementById("iescrollerN") : document.all.iescrollerN
cross_scrollerN.style.top=parseInt(scrollerheight)+8+"px"
cross_scrollerN.innerHTML=scrollercontentN
actualheightN=cross_scrollerN.offsetHeight
}
else if (document.layers){
ns_scrollerN=document.ns_scrollerN.document.ns_scroller2N
ns_scrollerN.top=parseInt(scrollerheight)+8
ns_scrollerN.document.write(scrollercontentN)
ns_scrollerN.document.close()
actualheightN=ns_scrollerN.document.height
}
lefttime=setInterval("scrollscrollerN()",60)
}

function scrollscrollerN(){
 
if (iedom){
if (parseInt(cross_scrollerN.style.top)>(actualheightN*(-1)+8))
cross_scrollerN.style.top=parseInt(cross_scrollerN.style.top)-copyspeedN+"px"
else
cross_scrollerN.style.top=parseInt(scrollerheight)+8+"px"
}
else if (document.layers){
if (ns_scrollerN.top>(actualheightN*(-1)+8))
ns_scrollerN.top-=copyspeedN
else
ns_scrollerN.top=parseInt(scrollerheight)+8
}
}
 
if (iedom||document.layers){
with (document){
if (iedom){
write('<div name="ns_scrollerN" style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden" onMouseover="copyspeedN=pausespeedN" onMouseout="copyspeedN=scrollerspeedN">')
write('<div id="iescrollerN" style="position:absolute;left:0px;top:0px;width:100%;">')
write('</div></div>')
}
else if (document.layers){
write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scrollerN">')
write('<layer name="ns_scroller2N" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0 onMouseover="copyspeedN=pausespeedN" onMouseout="copyspeedN=scrollerspeedN"></layer>')
write('</ilayer>')
}
}
}

