<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Документ без названия</title>
    </head>
    <body>
        <a href="http://mail.ru" onclick="window.open( this.href ); return false;">Mail.ru</a>
    </body>
</html>
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>Документ без названия</title>
        <script>
            function openWnd( self ) {
                window.open( self.href, "wnd", "height=400,width=800,screenX=150,screenY=150,location=no,"+
                                "menubar=no,scrollbars=no,status=no,titlebar=no,toolbar=no,resizable=no,directories=no");
                return false;
            }
        </script>
    </head>
    <body>
        <a href="http://mail.ru" onclick="return openWnd( this );">Mail.ru</a>
    </body>
</html>