function openPagina(Pagina, lang){
	var resposta=sendFormGET("formulario&layout=none&pagina="+Pagina+"&Idioma="+lang);
	document.getElementById('dinamicSuperior').innerHTML = resposta;
	
	var oFCKeditor = new FCKeditor( 'Contenido','900','500'); oFCKeditor.BasePath = BASEDIR + 'libs/fckeditor/'; oFCKeditor.ReplaceTextarea();
	
	if(document.getElementById('dinamicSuperior').style.display=='none'){
		new Effect.BlindDown('dinamicSuperior');
	}
}

function savePagina(){
	
	if(confirm("Seguro que quieres editar esta página?")){
		document.getElementById("datos").submit();
	}
}

function enviar_soporte(){
	enviarFormulario(BASEDIR+"zonas_dinamicas/contactar_soporte&template=none", "datos");
	
	document.getElementById("email").value = "";
	document.getElementById("asunto").value = "";
	document.getElementById("usuario").value = "";
	document.getElementById("problema").value = "";
	
	alert(zon[0]);
	
}
