						    //ANCHO
							var scrollerwidth="650px"
							//ALTO
							var scrollerheight="445px"
							//VELOCIDAD DEL SCROLL (entre 1 y 10)
							var scrollerspeed=3
							
							var pauseit=1
							var iedom=document.all||document.getElementById
							var actualheight=''
							var cross_scroller, ns_scroller
							var pausespeed=(pauseit==0)? copyspeed: 0
							var copyspeed=pausespeed
							window.onload=populate
												
							//Función que carga el texto y lo coloca
							function populate(){
								//En Internet Explorer
								if (iedom){
									cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
									cross_scroller.style.top=0+"px"
									cross_scroller.innerHTML=scrollercontent
									actualheight=cross_scroller.offsetHeight
								}
								//En Netscape
								else if (document.layers){
									ns_scroller=document.ns_scroller.document.ns_scroller2
									ns_scroller.top=parseInt(scrollerheight)
									ns_scroller.document.write(scrollercontent)
									ns_scroller.document.close()
									actualheight=ns_scroller.document.height
								}
								lefttime=setInterval("scrollscroller()",20)
								
							}
							//Función que mueve el texto
							function scrollscroller(){
								//En Internet Explorer
								if (iedom){
									if (parseInt(cross_scroller.style.top)<(parseInt(scrollerheight)-(actualheight+10))){
										cross_scroller.style.top=(parseInt(scrollerheight)-(actualheight+10))+1
										copyspeed=pausespeed
									}
									else if (parseInt(cross_scroller.style.top)>1) {
										cross_scroller.style.top=0
										copyspeed=pausespeed
									}
									else
										cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
								}
								//En Netscape
								else if (document.layers){
									if (ns_scroller.top<(parseInt(scrollerheight)-(actualheight+10))){
										ns_scroller.top=(parseInt(scrollerheight)-(actualheight+10))+1
										copyspeed=pausespeed
									}
									else if (ns_scroller.top>1) {
										ns_scroller.top=0
										copyspeed=pausespeed
									}
									else
										ns_scroller.top-=copyspeed
										
								}
							}
							//Escribe el contenido en la página
							if (iedom||document.layers){
								with (document){
									//En Internet Explorer
									if (iedom){
										write('<div style="position:relative;width:'+scrollerwidth+';height:'+scrollerheight+';overflow:hidden">')
										write('<div id="iescroller" style="position:absolute;left:0px;top:0px;width:100%;">')
										write('</div></div>')
									}
									//En Netscape
									else if (document.layers){
										write('<ilayer width='+scrollerwidth+' height='+scrollerheight+' name="ns_scroller">')
										write('<layer name="ns_scroller2" width='+scrollerwidth+' height='+scrollerheight+' left=0 top=0></layer>')
										write('</ilayer>')
									}
								}
							}