function newWindow(name, width, height, marginwidth,marginheight,leftmargin,topmargin)

{

    

    var isNet = navigator.appName.indexOf("Netscape") != -1;

    

    var isVer2 = navigator.appVersion.indexOf("2.") != -1;

        

        open(name, 

'comments','toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizeable=yes,menubar=no,marginwidth=0,marginheight=0,leftmargin=0,topmargin=0,width=' + width + ',height=' + height);

        

    if (isNet && isVer2)    // fix Netscape 2 peculiarity 

    

    open(name,'comments', '');

    

}

// as part of the a href javascript: newWindow('electionsignup.html', 350, 386)

