function crearTema(){
	var tema = document.getElementById("nuevoTema").value;
	if(tema==""||tema==" "){
		alert("Debe ingresar un nombre para el nuevo tema");
	}else{
		window.location.href = "crearTemaForo.php?titulo="+tema;
	}
}

function volver(){
	window.location.href = "foro.php";
}

