<!--
if(navigator.appName == 'Microsoft Internet Explorer'){
var speed=2
}else{
var speed=10
}


var iens6=document.all||document.getElementById
var ns4=document.layers

if (iens6){
var crossobj=document.getElementById? document.getElementById("content") : document.all.content
var contentheight=crossobj.offsetHeight
}
else if (ns4){
var crossobj=document.nscontainer.document.nscontent
var contentheight=crossobj.clip.top
}


function moveup(tamano){	
if (window.moveupvar) clearTimeout(moveupvar)
if(parseInt(crossobj.style.top) <('-' + tamano)){
	crossobj.style.top=300;
}

if (iens6){
crossobj.style.top=parseInt(crossobj.style.top)-speed+"px"
}else if (ns4){
crossobj.top-=speed
}
movedownvar=setTimeout("moveup("+ tamano +")",5)
}

function movedown(tamano){
if (window.movedownvar) clearTimeout(movedownvar)

if(parseInt(crossobj.style.top) >298){
	
	crossobj.style.top='-'+tamano;	
}
if (iens6){
crossobj.style.top=parseInt(crossobj.style.top)+speed+"px"
}else if (ns4){				
crossobj.top+=speed
}
moveupvar=setTimeout("movedown("+ tamano +")",5)
}

function stopscroll(){
if (window.moveupvar) clearTimeout(moveupvar)
if (window.movedownvar) clearTimeout(movedownvar)
}


function getcontent_height(){
if (iens6)
contentheight=crossobj.offsetHeight
else if (ns4)
document.nscontainer.document.nscontent.visibility="show"
}
window.onload=getcontent_height
//-->