<!-- Ocultar guión a navegadores antiguos

function contacto(){
	visible('contacto');
	openURL('index.php?pag=contacto','contacto');
}  

function visible(objeto) {
	var objVisible = document.getElementById(objeto);
	var estVisible = objVisible.style.visibility;
	if (estVisible == 'hidden') {
		objVisible.style.visibility = 'visible';
	} else {
		objVisible.style.visibility = 'hidden';
		}		
}

function newWin(link,w,h,s,r) {
	var winFeatures = 'width=' + w + ',height=' + h + ',scrollbars=' + s + ',resizable=' + r;
	var bookWindow = window.open(link, "", winFeatures);
}
	// Dejar de ocultar guión a navegadores antiguos -->
