﻿  function popup(mylink, windowname, larghezza, altezza, scroll) {
    if (! window.focus)return true;
    var href;
    
    browserName = navigator.appName.substring(0,8);
    if (typeof(mylink) == 'string')
      href=mylink;
    else
      href=mylink.href;
      
    if (browserName == 'Netscape') {
      eval(windowname + " = open(href, windowname, 'scrollbars=" + scroll + ",width="+larghezza+",height="+altezza+"');");
      eval(windowname + ".focus();");
    }
    else {
      eval("test = window.open(href, windowname, 'width="+larghezza+", height="+altezza+", scrollbars="+scroll + ",resizable=no');")
      test.focus();
    }
    return false;
  }

