    function share( i, u, t, b, c ) {
        try {
            u   = encodeURIComponent( u ) ;
            t   = encodeURIComponent( t ) ;
            switch ( i ) {
                case 1 : return window.open( "http://del.icio.us/post?v=4&noui&jump=close&url=" + u + "&title=" + t, "delicious", "toolbar=no,width=700,height=400" );
                case 2 : return window.open( "http://digg.com/submit?phase=2&url=" + u + "&title=" + t + "&bodytext="+encodeURIComponent(b)+"&topic="+c, "digg", "toolbar=no,width=800,height=600" );
                case 3 : return window.open( "http://reddit.com/submit?url=" + u + "&title=" + t, "reddit", "toolbar=no,width=700,height=385" );
                case 4 : return window.open( "http://www.facebook.com/sharer.php?u=" + u + "&t=" + t, "facebook", "toolbar=0,status=0,width=626,height=436" );
                case 5 : return window.open( "http://www.stumbleupon.com/submit?url=" + u + "&title=" + t, "stumbleupon", "toolbar=no,width=700,height=385" );
                default : return false ;
            }
        } catch ( e ) { void( e ) ; return false ; }
    }
