// JavaScript Document
<!--
function showHint(hintname, event)
{
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
ns6 = (document.getElementById)? true:false
if(ie4)   // si es explorer el browser 
    { 
	document.all(hintname).style.pixelLeft = 180;
    document.all(hintname).style.pixelTop = document.body.scrollTop + event.clientY - 20;
    document.all(hintname).style.visibility="visible";
	}
	else if(ns4 || ns6)
	{
	document.getElementById(hintname).style.top = document.body.scrollTop + event.clientY - 50;
	document.getElementById(hintname).style.left=180;
    document.getElementById(hintname).style.visibility="visible";
	}
}
function showHintt(hintname, event)
{
ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false
ns6 = (document.getElementById)? true:false
if(ie4)   // si es explorer el browser 
    { 
	document.all(hintname).style.pixelLeft = 180;
    document.all(hintname).style.pixelTop = document.body.scrollTop + event.clientY - 270;
    document.all(hintname).style.visibility="visible";
	}
	else if(ns4 || ns6)
	{
	document.getElementById(hintname).style.top = document.body.scrollTop + event.clientY - 240;
	document.getElementById(hintname).style.left=180;
    document.getElementById(hintname).style.visibility="visible";
	}
}

function showHint2(hintname, event)
{
   document.getElementById(hintname).style.visibility="visible";
}
function hideHint(hintname)
{
    document.getElementById(hintname).style.visibility="hidden";
}

function normalN1(obj) {
	obj.style.color="#000000";
	obj.style.background="#FFFFFF";
	obj.style.cursor="hand";	
}

function rolloverN1(obj) {
	obj.style.color="#ffffff";
	obj.style.background="#F2F0F1";	
	obj.style.cursor="hand";
}
//-->
      <!--
	  //muestra la información del curso
	function curso(id){
		var obj = document.getElementById('curso_' + id)
		if(obj.style.display == 'block') obj.style.display = 'none'
		else obj.style.display = 'block'
	}
	//oculta los cursos al cargar si el navegador acepta scripts
	function ocultacursos(){
		listado = document.getElementById('listadoCursos')
		contenedores = listado.getElementsByTagName('div')
		numContenedores = contenedores.length
		for(m=0; m < numContenedores; m++){
			 if(contenedores[m].id.indexOf('curso_') == 0)
			 contenedores[m].style.display = 'none'
          	}
       	}
	  
      //-->
function printPage() {
if (window.print) {
agree = confirm('¿Quieres imprimir esta página?');
if (agree) window.print(); 
   }
}
