function validar_tema(){
				valor=0;
				msg="Los siguientes campos son obligatorios:\n";
				
				
				/*
					ATENCIÓOONNNNN HAY QUE HACER REFERENCIA AL FORMULARIO REDIRECCION
				*/
			
				
				
		    
		   
		    if(document.forms['tema'].elements['d_titulo'].value.replace(/(^\s*)|(\s*$)/g, "")==''){
					msg+='\n-El Título es obligatorio.';
					valor=1;
				}
				if(document.forms['tema'].elements['d_introduccion'].value.replace(/(^\s*)|(\s*$)/g, "")==''){
					msg+='\n-El comentario es obligatorio.';
					valor=1;
				}
			
		
				if(valor==1){
					alert(msg);
					return false;	
				}else{
					return true;
				}
		}
		
function validar_comentario(){
				valor=0;
				msg="Los siguientes campos son obligatorios:\n";
				
				
				/*
					ATENCIÓOONNNNN HAY QUE HACER REFERENCIA AL FORMULARIO REDIRECCION
				*/
			
				
				
		    
		   
		    if(document.forms['redireccion'].elements['d_alias'].value.replace(/(^\s*)|(\s*$)/g, "")==''){
					msg+='\n-El Nombre es obligatorio.';
					valor=1;
				}
				if(document.forms['redireccion'].elements['d_comentario'].value.replace(/(^\s*)|(\s*$)/g, "")==''){
					msg+='\n-El comentario es obligatorio.';
					valor=1;
				}
			
		
				if(valor==1){
					alert(msg);
					return false;	
				}else{
					return true;
				}
		}
		