Salve a tutti.
Premetto con umiltà che ho le capacità di un opossum con i javascript.

Il mio obbiettivo era far aprire una finestra di popup di data misura al click su un bottone, a tal scopo ho recuperato da qualche parte il seguente javascript che si è rivelato perfetto.
codice:
<script type='text/javascript'>
function doPopups() {
  if (!document.getElementsByTagName) return false;
  var links=document.getElementsByTagName(\"a\");
  for (var i=0; i < links.length; i++) {
    if (links[i].className.match(\"popup\")) {
      links[i].onclick=function() {
        // Below - to open a full-sized window, just use: window.open(this.href);
        window.open(this.href, \"\", \"top=40, left=40, width=400, height=500, noscrollbars\");
        return false;
      }
    }
  }
}
window.onload=doPopups;
</script>
codice:
<a href='engint.php' class='popup'>
<input type='button' name='ENGint' value='Troupe Televisiva ENG Internazionale' CLASS='altroinput' onclick=\"return openWindow(this, {width:790,height:450,center:true})\" >
</a>
Ma il problema è che funziona solo su Firefox... con IE mi apre una nuova pagina fullscreen...

Dove devo correggere?