// Home Right Banner

 var RBscrollerwidth = 148 
 var RBscrollerheight = 600 
 var RBpause_for = 30000 
 var RBscrollerbackground='/images/popup_bkg.gif'
 var RBscrollerbgcolor='#ff';
 

if (RBmessages.length > 1)
	d=1;
	else
	d=0;

	function RBMove(whichdiv)
	{		
		tdiv=eval(whichdiv);
		
		if (d > RBmessages.length-1)
		{
			d=0;
			tdiv.innerHTML= RBmessages[d];
		}
		else
		{
			tdiv.innerHTML= RBmessages[d];
			d++;
		}
		if (RBmessages.length > 1)
		{
			setTimeout("RBMove(RBBanner)",RBpause_for);
		}
	}



	if (document.all)
		{
			// IE purpose
			document.writeln('<div id="RBmain" style="position:relative;width:'+RBscrollerwidth+';height:'+RBscrollerheight+';overflow:hidden;background-color:'+RBscrollerbgcolor+' ;background-image:url('+RBscrollerbackground+')">');		
			document.writeln('<div id="RBBanner" style="position:absolute;width:'+RBscrollerwidth+';left:0;top:1;">');
			document.write(RBmessages[0]);
			document.writeln('</div>');			
			document.writeln('</div>');	
			
		}
	else
	// netscape and firefox purpose
	if (document.getElementById)
		{
			document.writeln('<div id="RBmain" style="position:relative;width:'+RBscrollerwidth+';height:'+RBscrollerheight+';overflow:hidden;background-color:'+RBscrollerbgcolor+' ;background-image:url('+RBscrollerbackground+')">');		
			document.writeln('<div id="RBBanner" style="position:absolute;width:'+RBscrollerwidth+';left:0;top:1;">');
			document.write(RBmessages[0]);
			document.writeln('</div>');		
			document.writeln('</div>');		
		
		}


function RBscroll()
{		
	if (document.all)
	{
		// IE purpose	
		RBMove(RBBanner);		
	}
	else 
	{
		if(document.getElementById)
		{

			// netscape purpose		
			RBMove( document.getElementById("RBBanner"));	
		
		}	
		
	}
}