
var aCapas=("encartel,proximos,elalfil").split(",");

function abresub(estaCapa){
	for (i=0; i < aCapas.length; i++){
		laCapa=MM_findObj(aCapas[i]);
		if(estaCapa==aCapas[i]){
			laCapa.style.visibility='visible';
		}else{
			laCapa.style.visibility='hidden';
		}
	}
}


function chkUrl(unaVar){
	if(unaVar.indexOf("/encartel")>0==true)abresub('encartel');
	if(unaVar.indexOf("/prox")>0==true)abresub('proximos');	
	if(unaVar.indexOf("/alfil")>0==true)abresub('elalfil');
	if(unaVar.indexOf("/formacion")>0==true)abresub('elalfil');
}


var f_vacio="vacio.html";
var selfurl= self.document.location.href;
if(self==top){
	document.clear();
	document.write("<html><head><title>Teatro Alfil</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"></head>");
	document.write("<frameset rows=\"*,605,*\" border=0 frameborder=\"no\"><frame name= \"topspace\" noresize scrolling=\"no\" marginwidth=0 marginheight=0 frameborder=\"NO\" src="+f_vacio+">");
	document.write("<frameset cols=\"*,820,*\" border=0 frameborder=\"no\"><frame name=\"lspace\" scrolling=\"no\" noresize marginwidth=0 marginheight=0 frameborder=\"NO\" src="+f_vacio+">");
	document.write("<frame name= \"mainFrame\" noresize scrolling=\"auto\" marginwidth=0 marginheight=0 frameborder=\"NO\" src="+selfurl+">");
	document.write("<frame name=\"rspace\" scrolling=\"NO\" frameborder=\"NO\" noresize marginwidth=\"0\" marginheight=\"0\" src="+f_vacio+">");
	document.write("</frameset><frame name=\"botspace\" scrolling=\"no\" noresize marginwidth=0 marginheight=0 frameborder=\"NO\" src="+f_vacio+">");
	document.write("</frameset><noframes><body bgcolor=\"#FFFFFF\" text=\"#000000\">Su navegador no acepta marcos</body></noframes></html>");
	mainFrame.location.href=selfurl;
}