// JavaScript Document
				var marqueewidth=168
				var marqueeheight=200
				var speed=1
				var marqueecontents='<font face="Arial"><p align="center"><small>Para mayor información contactese a nuestro e-mail: <a href=mailto:info@viajesla.com>info@viajesla.com</a>, y consulte por nuestras tarifas a precios confidenciales, además Ud. podra elegir un Paquete Turístico de acuerdo a su itinerario, También haga sus reservas para Camino Inca 4D/3N, Camino Inca 2D/1N, Camino Inca 5D/4N (Salkantay) </a></small></a></font>'
				
				if (document.all)
				document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

				function regenerate(){
				window.location.reload()
				}
				
				function intializemarquee(){
				document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
				document.cmarquee01.document.cmarquee02.document.close()
				thelength=document.cmarquee01.document.cmarquee02.document.height
				scrollit()
				}
		
				function scrollit(){
				if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
				document.cmarquee01.document.cmarquee02.top-=speed
				setTimeout("scrollit()",100)
				}
				else{
				document.cmarquee01.document.cmarquee02.top=marqueeheight
				scrollit()
				}
				}