// ancho
var marqueewidth=108;
// alto
var marqueeheight=100;
// velocidad
var speed=2
// contenido del scroll
var marqueecontents='<div style="color:#FFFFFF; font-size:9px; font-family:Verdana, Arial, Helvetica, sans-serif;"><hr /><a href="http://www.isolidarias.org/comprar.php" class="not_link">"Visita las fotografias de nuestro ultimo proyecto en Lamu (Kenia)"</a></div>'

	document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+'px ;height:'+marqueeheight+'px;">'+marqueecontents+'</marquee>')
function regenerate(){
	window.location.reload()
}
function regenerate2(){
	if (document.layers){
		setTimeout("window.onresize=regenerate",120)
		intializemarquee()
	}
}
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()
	}
}
window.onload=regenerate2
