function abrirVentana()
{ 
	var iMyWidth;
	var iMyHeight;
	//Centra la ventana dependiendo de la resolución de pantalla del usuario.
	iMyWidth = (window.screen.width/2) - (250 + 10); 
	iMyHeight = (window.screen.height/2) - (250 + 40); 
	var win2 = window.open("http://www.endesahogar.com/egar/egar/avisoLegal.jsp","ficha","height=400,width=620,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes" +  ",resizable=no");
	win2.focus();
} 
