

function ShowBukMaLet(Text,Link,Type){
// Name, Url, Img
var aB=new Array('del.icio.us','del.icio.us/post?url='+Link+'&title='+Text,'delicious.gif',
'Fark','cgi.fark.com/cgi/fark/edit.pl?new_url='+Link+'&new_comment='+Text,'fark.gif',
'Digg','digg.com/submit?phase=2&url='+Link+'&title='+Text,'digg.gif',
'Reddit','reddit.com/submit?url='+Link+'&title='+Text,'reddit.gif',
'MyWeb','myweb.yahoo.com/myresults/bookmarklet?u='+Link+'&t='+Text+'&ei=UTF8','myweb.gif',
'BlogMarks','blogmarks.net/my/new.php?url='+Link+'&title='+Text,'blogmarks.gif',
'Furl','www.furl.net/storeIt.jsp?u='+Link+'&t='+Text,'furl.gif',
'Jots','jots.com/?cmd=do_post&url='+Link+'&title='+Text,'jots.gif',
'Spurl','www.spurl.net/spurl.php?url='+Link+'&title='+Text,'spurl.gif');


var st="";
if(Type==0){
 st='Bookmark <b>'+Text+'</b> to <br>'
}

for(i=0;i<aB.length;i+=3){
	st+='<a href="http://'+aB[i+1]+'" title="Add to '+aB[i]+': '+Text+'" target=_blank rel=nofollow>'+
  '<img src="/img/'+aB[i+2]+'" border=0 height=16 width=16 alt="Add to '+aB[i]+': '+Text+'">';
	if(Type){
		st+=' '+aB[i]+'<br>';
	}
	st+='</a>';
}
document.write(st);
}


