// <?

// FUNCION MANITO SOBRE LO QUE NO ES LINK APTO W3C
	function PH(){
		arguments[0].style.cursor=(window.event)? (/chrome/.test(navigator.userAgent.toLowerCase()))? 'pointer' : 'hand' : 'pointer';
	}

// CARGA EL NOMBRE Y EL ID DEL SEMINARIO A INSCRIBIRSE
	function addtosem(){
		document.getElementById('idsem').value = arguments[0];
		document.getElementById('manesem').value = arguments[1];
	}

// FUNCION DEL MENU POR SI EL NAVEGADOR ES VIEJO
	function ShowHide(){
		object = document.getElementById(arguments[0]);
		if(object.style['display']=='none' || !object.style['display']) {
			object.style['display']='block';
		} else {
			object.style['display']='none';
		}
	}
