
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" );
				
				case 2 : return window.open( "http://digg.com/submit?phase=2&url=" + u + "&title=" + t + "&bodytext="+encodeURIComponent(b)+"&topic="+c, "digg", "toolbar=no" );
				
				case 3 : return window.open( "http://www.facebook.com/sharer.php?u=" + u + "&t=" + t, "facebook", "toolbar=0,status=0" );

				case 4 : return window.open( "http://www.reddit.com/submit?url=" + u + "&title=" + t, "reddit", "toolbar=no" );
				
				case 5 : return window.open( "http://www.stumbleupon.com/submit?url=" + u + "&title=" + t, "stumbleupon", "toolbar=no" );
				
				case 6 : return window.open( "http://www.myspace.com/Modules/PostTo/Pages/?t=" + u + "&title=" + t, "myspace", "toolbar=no" );
				
				case 7 : return window.open( "http://www.bebo.com/c/share?Url=" + u + "&title=" + t + "&bodytext="+encodeURIComponent(b)+"&topic="+c, "bebo", "toolbar=0,status=0" );
				
				default : return false ;  

			}

		} catch ( e ) { void( e ) ; return false ; }

	}

