<!--
if(navigator.appName == 'Microsoft Internet Explorer'){
var speed=1
}else{
var speed=3
}

var crossobj=document.getElementById? document.getElementById("content") : document.all.content
var contentheight=crossobj.offsetHeight


function moveup(tamano){	
if (window.moveupvar) clearTimeout(moveupvar)
if(parseInt(crossobj.style.top) <('-' + tamano)){
	crossobj.style.top=175 + "px";
}
crossobj.style.top=parseInt(crossobj.style.top)-speed+"px"
movedownvar=setTimeout("moveup("+ tamano +")",5)
}

function movedown(tamano){

if (window.movedownvar) clearTimeout(movedownvar)

if(parseInt(crossobj.style.top) >175){
	crossobj.style.top='-'+tamano+"px";		
}
crossobj.style.top=parseInt(crossobj.style.top)+speed+"px"
moveupvar=setTimeout("movedown("+ tamano +")",5)
}

function stopscroll(){
if (window.moveupvar) clearTimeout(moveupvar)
if (window.movedownvar) clearTimeout(movedownvar)
}


function getcontent_height(){
contentheight=crossobj.offsetHeight
}
/*window.onload=getcontent_height*/
//-->