﻿	function share( i, u, t, b, c ) {
		try {
			u	= encodeURIComponent( u ) ;
			t	= encodeURIComponent( t ) ;
			switch ( i ) {
				case 1 : 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 2 : return window.open( "http://www.facebook.com/sharer.php?u=" + u + "&t=" + t, "facebook", "toolbar=0,status=0,width=626,height=436" );
				case 3 : return window.open( "http://del.icio.us/post?v=4&noui&jump=close&url=" + u + "&title=" + t, "delicious", "toolbar=no,width=700,height=400" );
				default : return false ;
			}
		} catch ( e ) { void( e ) ; return false ; }
	}
