function abreaviso() {
	var aviso=window.open('/habilidades_directivas/avisolegal.html','aviso','width=575,height=575,scrollbars=yes');
	aviso.focus();
	return false;
}
function abremapa() {
	var mapa=window.open('/habilidades_directivas/mapa.html','mapa','width=625,height=575,scrollbars=yes');
	mapa.focus();
	return false;
}
window.onload=function() {
		document.getElementById('enlaceaviso').onclick=abreaviso;
		if (document.getElementById('ampliarmapa')) {
			document.getElementById('ampliarmapa').onclick=abremapa;
		}
		if (document.getElementById('seminarios')) {
			
			var enlaces=document.getElementsByTagName('a');
			for (i=0; i<enlaces.length; i++) {
				if (enlaces[i].className=='pdf')
					enlaces[i].target='_blank';
					                                                                                         
			}
		}
}
