function stopScroll(){
	var f = document.getElementById("mnoticias");
	f.scrollAmount = 0;
}

function startScroll(){
	var f = document.getElementById("mnoticias");
	f.scrollAmount = 2;	
	
}

function startNoticias(contenido,w,h,s){
	vini = s;
	document.write('<marquee name="mnoticias" id = "mnoticias" onMouseOut="startScroll()" onMouseOver="stopScroll()" direction="up" scrollAmount='+s+' style="width:'+w+';height:'+h+'">'+contenido+'</marquee>')	
}