//	ROLLOVER MENU
function dentro(nombre) {
	ocultaSM();
	var imagen = document.getElementById(nombre);
	imagen.src =  "_images/" + nombre + "_o.gif";
}
function fuera(nombre) {
	var imagen=document.getElementById(nombre);
	imagen.src = "_images/" + nombre + "_n.gif";
}
//	SUBMENU
function muestraSM() {
	ocultaSM();
	document.getElementById("areaNull").style.visibility = "visible";
	document.getElementById("oferta").style.visibility = "visible";
	document.getElementById("menu2").src =  "_images/menu2_o.gif";
}
function ocultaSM() {
	document.getElementById("areaNull").style.visibility = "hidden";
	document.getElementById("oferta").style.visibility = "hidden";
	document.getElementById("menu2").src =  "_images/menu2_n.gif";
}
//	SECCIONES CURSOS
var seccionAntigua = "sec1";
var seccionNueva;
function muestraSeccion(cual){
	seccionNueva = "sec" + cual;
	document.getElementById(seccionAntigua).style.display = "none";
	document.getElementById(seccionNueva).style.display = "block";
	seccionAntigua = seccionNueva;
}
//	POPUP
function popUp ( url, ancho, alto) { 
	var arriba = (screen.height - alto) / 2;
	var izquierda = (screen.width - ancho) / 2;
	var propiedades="'toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,width=";
	propiedades += ancho+",height="+alto+",left="+izquierda+",top="+arriba+"'";
	window.open(url,"popUp", propiedades);
}