function loadSearcher() {
	var a = document.getElementById('searcher');
	a.innerHTML +=
			"<form method='get' action='/search.php' style='display:inline;'> " + 
			"<input type='text' name='txtBusqueda' id='txtBusqueda'>" +
			"<span id='sep'>-</span>" +
			"<select name='cboCat' id='cboCat'>" +
				"<option value=\"0\">(Indicar)</option>" +
				"<option value=\"2\">Empresa</option>" +
				"<option value=\"3\">Derecho</option>" +
				"<option value=\"4\">Informática / Internet</option>" +
				"<option value=\"5\">Medicina / Salud</option>" +
				"<option value=\"6\">Ciencias / Ingenierias</option>" +
				"<option value=\"7\">Humanidades</option>" +
				"<option value=\"8\">Comunicación</option>" +
				"<option value=\"9\">Oposiciones</option>" +
				"<option value=\"10\">Hostelería y Turismo</option>" +
				"<option value=\"11\">Deportes y Ocio</option>" +
				"<option value=\"12\">Idiomas</option>" +
			"</select>" +
			"<input type='submit' value='Buscar'></form>";
}
function redir(url) {
	url = url.replace('http://','');	
	window.location = 'http://' + url.replace('//','/');
}

function openWindow(url) {
	window.open(url, url, 'width=400, height=400, scrollbars=yes, menubar=no, location=no, resizable=no');
}

function insVotacion() {
	var obj = document.getElementById('cboVote');
	var value = obj.options[obj.selectedIndex].value;

	if (value != -1) {
		document.frm.valoracion.value = value;
		obj.nextSibling.style.display='none';
		obj.style.display='none';
		document.frm.target='ifrm';
		document.frm.submit();
	}
}

function insVotacion1() {
	var obj = document.getElementById('cboVote');
	var obj1 = document.getElementById('vota');
	var value = obj.options[obj.selectedIndex].value;

	if (value != -1) {
		document.frm.valoracion.value = value;
		obj1.style.display='none';
		document.frm.target='ifrm';
		document.frm.submit();
	}
}



function accederCurso() {
/*
    var ancho = window.screen.availWidth - 10;
    var alto = window.screen.availHeight - 30;
    var url = '/showCourse.php?a=' + document.frm.idCurso.value + '&b=' + document.frm.idCentro.value + '&h=' + document.frm.hash.value;
	window.open(url, document.frm.hash.value, 'width='+ancho+', height='+alto+',left=0,top=0,status=yes,resizable=no,scrollbars=no');
*/	
	document.frm.action='showRelatedCourse.php';
	document.frm.method='get';
	document.frm.target='';
	document.frm.submit();
}