// JavaScript Document

var ventana='';

function abrir(pagina,imagen){
	document.getElementById('indicador').src=imagen;
	document.getElementById('contenido').src=pagina
}

function show(tipo,id,titulo){
	if(tipo=='teatro'){
		ventana=open('download.php?id='+id+'&titulo='+titulo,'','');
		setTimeout('ventana.close()',10000)
	}else{
		open('fragmentos.php?tipo='+tipo+'&idpadre='+id+'&titulo='+titulo,'','width=400,height=300,scrollbars=no')
	}
}

var timer;
var timerfast;

function scrolling(hor,ver,imagen){
	imagen.style.cursor='pointer';
	timer=setInterval('parent.contenido.scrollBy('+hor+','+ver+')',50)
}

function scrollingstop(){
	clearInterval(timer);
}

function scrollingfast(hor,ver,imagen){
	imagen.style.cursor='pointer';
	timerfast=setInterval('parent.contenido.scrollBy('+hor+','+ver+')',50)
}

function scrollingfaststop(){
	clearInterval(timerfast);
}