
var str11="";
var str11=str11 + " <p><font size=\"2\" style=\"font-weight: bold;\"><span style=\"font-family: Courier New,Courier,mono;\">The pricing for our reseller plans have been increased wef 7 Oct 2008. Click <span style=\"text-decoration: underline;\"><a href=\"http://123domainregistry.com/reseller_program.php\" style=\"font-family: Courier New,Courier,mono;\">here</a><span style=\"font-family: Courier New,Courier,mono;\" /></span></span></font> <font size=\"2\" style=\"font-weight: bold;\"><span style=\"font-family: Courier New,Courier,mono;\">to view the current pricing</span></font>.</p>";
var str8="";
var str8=str8 + " <p style=\"font-family: Courier New,Courier,mono;\"><font size=\"2\">Our retail domain registration prices has been increased wef 7 Oct 2008. Please view the current domain registration prices by clicking <a href=\"http://123domainregistry.com/tld_pricing.php\">here</a>.&nbsp;</font></p>";  


 var contents=new Array();
 
contents[0]=str11;
contents[1]=str8;
 
 /*  			
 contents[0]=str1
 contents[1]=str2
 */

 var scrollerwidth="230px"
 var scrollerheight="100px"
 // Scrollers speed here (larger is faster 1-10)
 var scrollerspeed=2
 // Scrollers content goes here! Keep all of the message on the same line!
 var callno=0
 var scrollercontent=contents[callno]
  
 var pauseit=1;
 // Change nothing below!
 scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1)
 //slow speed down by 1 for NS
 var copyspeed=scrollerspeed
 var iedom=document.all||document.getElementById
 var actualheight=''
 var cross_scroller, ns_scroller
 var pausespeed=(pauseit==0)? copyspeed: 0  
 var waittime;
 
 function callwait(){
  clearInterval(waittime)       
  cross_scroller.style.top=="1px"   
  lefttime=setInterval("scrollscroller()",50)   
 } 
  
 function populateplain(){
  if (iedom){
   cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
   cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
   cross_scroller.innerHTML=scrollercontent
   actualheight=cross_scroller.offsetHeight
  }
 else if (document.layers){
   ns_scroller=document.ns_scroller.document.ns_scroller2
   ns_scroller.top=parseInt(scrollerheight)+8
   ns_scroller.document.write(scrollercontent)
   ns_scroller.document.close()
   actualheight=ns_scroller.document.height
  }
 }
  
 function populate(){
  if (iedom){
   cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
   cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
   cross_scroller.innerHTML=scrollercontent
   actualheight=cross_scroller.offsetHeight
  }
  else if (document.layers){
   ns_scroller=document.ns_scroller.document.ns_scroller2
   ns_scroller.top=parseInt(scrollerheight)+8
   ns_scroller.document.write(scrollercontent)
   ns_scroller.document.close()
   actualheight=ns_scroller.document.height
  }
 lefttime=setInterval("scrollscroller()",50)
 }
 window.onload=populate;

 function scrollscroller(){
  if (iedom){
   if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8)){
    cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"        
	if(cross_scroller.style.top=="0px"){
	  clearInterval(lefttime)       
	  waittime=setInterval("callwait()",5000)      
	}
  }	 
  else{   
   cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
   callno++
   if(callno==contents.length){
    callno=0
   }
   scrollercontent=contents[callno] 
   populateplain()
   }	
  }
  else if (document.layers){
   if (ns_scroller.top>(actualheight*(-1)+8))
    ns_scroller.top-=copyspeed
   else
    ns_scroller.top=parseInt(scrollerheight)+8
   }
  }
  if (iedom||document.layers){
   with (document){
    if (iedom){
	 var div_str='<div style="position:relative;width:'
	 div_str+=scrollerwidth+';height:'+scrollerheight+';overflow:hidden" '
	 div_str+='onMouseover="copyspeed=pausespeed" '
	 div_str+=' onMouseout="copyspeed=scrollerspeed">'; 
     div_str+='<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">'; 
     div_str+='</div></div>';
     write(div_str) 
    }
    else if (document.layers){
	  var ilayer_str='<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">'
	  ilayer_str+='<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+''
	  ilayer_str+=' left=0 top=0 onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=scrollerspeed"></layer>'
   	  ilayer_str+='</ilayer>'
	  write(ilayer_str)      
  }
 }
}