// JavaScript Document

//<![CDATA[
		   
function abreVentana(){
	//blur();
	window.open(this,"","width=547,height=462,top=100,left=300,scrollbars=1");
	return false;
}//fin fventana


function inicio(){
	if (!document.getElementById) return;
	
	var popUp = document.getElementById("datosLegales");
	var enlaces = popUp.getElementsByTagName("a");
	for (var i=0; i<enlaces.length; i++){
		enlaces[i].onclick = abreVentana;
	}
}

window.onload = inicio;

//]]>