/* -------------------------------------------------------------------------------- */
IncluidoTema=0;
IncluidoMensaje=0;
/* -------------------------------------------------------------------------------- */
function citarTitulo(){
    if (IncluidoTema==0){
    		document.getElementById('TEMA').value=document.getElementById('TEMAORIGINAL').value;
    		IncluidoTema=1;
    }
}
/* -------------------------------------------------------------------------------- */
function citarMensaje(){
    if (IncluidoMensaje==0){
    		document.getElementById('CUERPO').value= document.getElementById('MENSAJEORIGINAL').value;
        IncluidoMensaje=1;
    }
}
/* -------------------------------------------------------------------------------- */
function mostrarVideos(desde){
	var param = "DESDE=" + desde;
	$.ajax({url: '/obtenerVideosForo.phtml',
		type: 'POST',
		data: param,
		dataType: 'html',
		success: function(resultado){
			$('#jsparrilla').fadeOut('fast', function() {
				$('#jsparrilla').html(resultado).fadeIn('fast');
			});
		}
	});
}
/* -------------------------------------------------------------------------------- */
function mostrar(nombreCapa) {
    nombreCapa=nombreCapa;
    document.getElementById(nombreCapa).style.display="block";
}

function cerrar(nombreCapa) {
    nombreCapa=nombreCapa;
    document.getElementById(nombreCapa).style.display="none";
}

function mostrarOcultar(nombreCapa,chk){
    nombreCapa=nombreCapa;
    if (document.getElementById(nombreCapa).style.display == "block") {                        
        cerrar(nombreCapa);
    } else {
        mostrar(nombreCapa);
    }
} 
