// JavaScript Document function abrirventana (url) { window.open (url); } function legal() { alto = 130; ancho = 320; izquierda = (screen.width / 2) - (ancho / 2); superior = (screen.height / 2) - (alto / 2); newwin=window.open("http://www.webpositer.com/datos.php","legal","height="+alto+",width="+ancho+",location=no,directories=no,menubar=no,resizable=auto,copyhistory=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,left=" + izquierda + ",top=" + superior) } function privacidad() { alto = 400; ancho = 500; izquierda = (screen.width / 2) - (ancho / 2); superior = (screen.height / 2) - (alto / 2); newwin=window.open("http://www.webpositer.com/privacidad.php","legal","height="+alto+",width="+ancho+",location=no,directories=no,menubar=no,resizable=auto,copyhistory=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,left=" + izquierda + ",top=" + superior) }