function verifyCompatibleBrowser()
	{ 
    	this.ver=navigator.appVersion 
	    this.dom=document.getElementById?1:0 
    	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0; 
	    this.ie4=(document.all && !this.dom)?1:0; 
    	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
		 
	    this.ns4=(document.layers && !this.dom)?1:0; 
    	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5) 
	    return this 
	}

bw_3_2 = new verifyCompatibleBrowser() 
var speed_3_2=50 
var loop_3_2, timer_3_2
 
function ConstructObject_3_2(obj_3_2,nest_3_2)
	{
		nest_3_2=(!nest_3_2) ? '':'document.'+nest_3_2+'.' 
	    this.el=bw_3_2.dom?document.getElementById(obj_3_2):bw_3_2.ie4?document.all[obj_3_2]:bw_3_2.ns4?eval(nest_3_2+'document.'+obj_3_2):0; 
    	this.css=bw_3_2.dom?document.getElementById(obj_3_2).style:bw_3_2.ie4?document.all[obj_3_2].style:bw_3_2.ns4?eval(nest_3_2+'document.'+obj_3_2):0; 
	    this.scrollHeight=bw_3_2.ns4?this.css.document.height:this.el.offsetHeight 
    	this.clipHeight=bw_3_2.ns4?this.css.clip.height:this.el.offsetHeight 
	    this.up=MoveAreaUp_3_2;this.down=MoveAreaDown_3_2; 
	    this.MoveArea_3_2=MoveArea_3_2; this.x_3_2; this.y_3_2; 
    	this.obj_3_2 = obj_3_2 + "Object" 
	    eval(this.obj_3_2 + "=this") 
    	return this 
	}

function MoveArea_3_2(x_3_2,y_3_2)
	{ 
	    this.x_3_2=x_3_2;this.y_3_2=y_3_2
    	this.css.left=this.x_3_2 
	    this.css.top=this.y_3_2 
	}
 
function MoveAreaDown_3_2(move_3_2)
	{
		if (this.y_3_2>-this.scrollHeight+objContainer_3_2.clipHeight)
			{
				this.MoveArea_3_2(0,this.y_3_2-move_3_2)
			    if(loop_3_2) setTimeout(this.obj_3_2+".down("+move_3_2+")",speed_3_2) 
			} 
	}

function MoveAreaUp_3_2(move_3_2)
	{
		if(this.y_3_2<0)
			{
				this.MoveArea_3_2(0,this.y_3_2-move_3_2) 
			    if(loop_3_2) setTimeout(this.obj_3_2+".up("+move_3_2+")",speed_3_2) 
			} 
	} 
 
function PerformScroll_3_2(speed_3_2)
	{
		if(initialised_3_2)
			{ 
				loop_3_2=true; 
				if(speed_3_2>0) objScroller_3_2.down(speed_3_2) 
				else objScroller_3_2.up(speed_3_2) 
			} 
	} 
 
function CeaseScroll_3_2()
	{ 
		loop_3_2=false 
	    if(timer_3_2) clearTimeout(timer_3_2) 
	} 

var initialised_3_2; 

function InitialiseScrollableArea_3_2()
	{ 
		objContainer_3_2=new ConstructObject_3_2('divContainer_3_2') 
	    objScroller_3_2=new ConstructObject_3_2('divContent_3_2','divContainer_3_2') 
    	objScroller_3_2.MoveArea_3_2(0,0) 
	    objContainer_3_2.css.visibility='visible' 
    	initialised_3_2=true; 
		
		if ( objScroller_3_2.scrollHeight > objContainer_3_2.scrollHeight )
			{
				objUpControl_3_2=new ConstructObject_3_2('divUpControl_3_2')
				objDownControl_3_2=new ConstructObject_3_2('divDownControl_3_2')
				objUpControl_3_2.css.visibility='visible'
				objDownControl_3_2.css.visibility='visible'
			}
	} 

