// JavaScript Document
function openplanes(id){
	planeswindow=dhtmlmodal.open('Planes', 'iframe', 'contenido/planes.php?id=' + id, 'Planes', 'width=800px,height=500px,center=1,resize=0,scrolling=1')
	planeswindow.onclose=function(){
		//var theform=this.contentDoc.forms[0] //Access first form inside iframe for demo purposes
		//var theemail=this.contentDoc.getElementById("emailfield") //Access form field with id="emailfield"
		return true;
	}
}

function openrevista(id){
	revistawindow=dhtmlmodal.open('HETERODOXA: Revista Electrónica', 'iframe', 'contenido/revista.php?id=' + id, 'HETERODOXA: Revista Electrónica', 'width=900px,height=500px,center=1,resize=0,scrolling=1')
	revistawindow.onclose=function(){
		return true;
	}
}

function openmaestros(id){
	maestroswindow=dhtmlmodal.open('Maestros', 'iframe', 'contenido/curriculum.php?id=' + id, 'Maestros', 'width=900px,height=500px,center=1,resize=0,scrolling=1')
	maestroswindow.onclose=function(){
		return true;
	}
}

function openconvocatorias(id){
	maestroswindow=dhtmlmodal.open('Convocatorias', 'iframe', 'contenido/convocatoria.php?id=' + id, 'Convocatoria', 'width=900px,height=500px,center=1,resize=0,scrolling=1')
	maestroswindow.onclose=function(){
		return true;
	}
}

function opennoticia(id){
	maestroswindow=dhtmlmodal.open('Noticia', 'iframe', 'contenido/noticia.php?id=' + id, 'Noticia', 'width=700px,height=400px,center=1,resize=0,scrolling=1')
	maestroswindow.onclose=function(){
		return true;
	}
}

function navegaForo(opc,idf,idt,p,pc,accion){
	document.frmupn.opc.value=opc;
	document.frmupn.idf.value=idf;
	document.frmupn.idt.value=idt;
	document.frmupn.p.value=p;
	document.frmupn.pc.value=pc;
	document.frmupn.accion.value=accion;
	navegaMenu(0,'Foros de discusión','foros');
}

function mostrarLinkTexto(element){
	element.style.textDecoration='underline';
	element.style.cursor='pointer';
}

function ocultarLinkTexto(element){
	element.style.textDecoration='none';
	element.style.cursor='default';
}

