Si grazie ho una funzione che mi apre la popup è questa:
codice:
<script language="javascript">
   <!--
    function popup() {
       var w = 490;
       var h = 250;
       var pw = Math.floor((screen.width-w)/2);
       var ph = Math.floor((screen.height-h)/2);
          window.open("dati.asp","","width=" + w + ",height=" + h + ",top=" + ph + ",left=" + pw);
    }
 //-->
  </script>