function CopyToClipboard(obj) {
        var inElement = document.getElementById(obj);
        if (inElement.createTextRange) {
            var range = inElement.createTextRange();
            if (range)
            range.execCommand('Copy');
        }
        else
        {
            var flashcopier = 'flashcopier';
            if(!document.getElementById(flashcopier)) {
            var divholder = document.createElement('div');
            divholder.id = flashcopier;
            document.body.appendChild(divholder);
            }
        document.getElementById(flashcopier).innerHTML = '';
        var divinfo = '<embed src="/images/_clipboard.swf" FlashVars="clipboard='+encodeURIComponent(inElement.value)+'" width="0" height="0" type="application/x-shockwave-flash"></embed>';
        document.getElementById(flashcopier).innerHTML = divinfo;
       return;
  }
 
}
function myselectaddr(inputurl)
{
	document.getElementById(inputurl).select();
	window.clipboardData.setData("text",document.getElementById(inputurl).value+"\r\nBrothersoft");
}
var bookmark='\
&nbsp;&nbsp;<a target="_blank" href="http://digg.com/submit?phase=2&url='+location.href+'&title='+encodeURIComponent(document.title)+'"><img src="/images/add1.gif" alt="Digg it!"/></a>\
&nbsp;&nbsp;&nbsp;<a target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&bkmk='+location.href+'&title='+encodeURIComponent(document.title)+'"><img src="/images/add11.gif"  alt="Google Bookmarks"/></a>\
&nbsp;&nbsp;&nbsp;<a target="_blank" href="http://del.icio.us/post?url='+window.location.href+'&title='+encodeURIComponent(document.title)+'"><img src="/images/add3.gif" alt="Del.icio.us"/></a>\
&nbsp;&nbsp;&nbsp;<a target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u='+location.href+'"><img src="/images/add19.gif" alt="Yahoo! MyWeb"/></a>\
&nbsp;&nbsp;&nbsp;<a target="_blank" href="http://furl.net/storeIt.jsp?u='+location.href+'&t='+encodeURIComponent(document.title)+'"><img src="/images/add7.gif" alt="Furl" /></a>\
&nbsp;&nbsp;&nbsp;<a target="_blank" href="http://blinklist.com/index.php?Action=Blink/addblink.php&Url='+location.href+'&Title='+encodeURIComponent(document.title)+'"><img src="/images/add6.gif" alt="Binklist" /></a>\
&nbsp;&nbsp;&nbsp;<a target="_blank" href="http://reddit.com/submit?url='+location.href+'&title='+encodeURIComponent(document.title)+'"><img src="/images/add12.gif" alt="Reddit!" /></a>  \
\
';
document.write(bookmark);
