
var  bookmark = new Array(10);
var url=document.location;

var heading='<span><a class="bookmark" href="javascript:void(0);"><img src="http://www.hedir.com/styles/basic/img/social-bookmark-button.gif" border="0" align="middle" width="135" height="18"/><span>';
book='<tr align="left"><td width="15px"><img src="http://www.hedir.com/styles/basic/img/small-bookmark.gif" alt=\'\' border="0" /></td><td><a href="#" class="bookmarklink" onclick="javasrcipt:CreateBookmarkLink();">Add to bookmark</a></td></tr>\r\n';
bookmark[0]='<tr align="left"><td width="15px"><img src="http://www.hedir.com/styles/basic/img/delicious-small.jpeg" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://del.icio.us/post?url=' + url + '&amp;" onclick="window.location.href=this.href">Add to del.icio.us</a></td></tr>\r\n';
bookmark[1]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/yahoomyweb-small.png" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?&amp;u=' + url + '" onclick="window.location.href=this.href">Add to YahooMyWeb</a></td></tr>\r\n';
bookmark[2]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/digg-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://digg.com/submit?phase=2&url=' + url + '" onclick="window.location.href=this.href">Add to Digg</a></td></tr>\r\n';
bookmark[3]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/technorati-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://technorati.com/signup/?f=favorites&Url=' + url + '" onclick="window.location.href=this.href">Add to Technorati</a></td></tr>\r\n';
bookmark[4]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/reddit-small.gif" alt=\'\' border="0" /> </td><td><a class="bookmarklink" href="http://reddit.com/submit?url=' + url + '&title=" onclick="window.location.href=this.href">Add to Reddit</a></td></tr>\r\n';
bookmark[5]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/furl-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://www.furl.net/storeIt.jsp?&u=' + url + '" onclick="window.location.href=this.href">Add to Furl</a></td></tr>\r\n';
bookmark[6]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/spurl-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://www.spurl.net/spurl.php?v=3&Url=' + url + '" onclick="window.location.href=this.href">Add to Spurl</a></td></tr>\r\n';
bookmark[7]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/simpy-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://www.simpy.com/simpy/LinkAdd.do?href=' + url + '" onclick="window.location.href=this.href">Add to Simpy</a></td></tr>\r\n';
bookmark[8]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/blinklist-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&Description=&Url=' + url + '" onclick="window.location.href=this.href">Add to Blinklist</a></td></tr>\r\n';
bookmark[9]='<tr align="left"><td><img src="http://www.hedir.com/styles/basic/img/wink-small.gif" alt=\'\' border="0" /></td><td><a class="bookmarklink" href="http://www.wink.com/_/tag?Url=' + url + '" onclick="window.location.href=this.href">Add to Wink</a></td></tr>\r\n';
powerby='<tr align="left"><td width="15px"></td><td><a href="http://www.hedir.com/web2.0/" class="hedirpower" onclick="window.location.href=this.href" >Powered by Hedir</a></td></tr>';


 function CreateBookmarkLink() {
         var title =document.title; 
         var url = document.location;
         if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
                window.external.AddFavorite(url,title);   
         }
         else {
                window.sidebar.addPanel(title, url,"");    
         }
}

                         
var some=heading;   
some= some + "<table style='font-size:9px;' align='left' border='0' cellpadding='2' cellspacing='1' width='180' class='bookmark'>";
some =some + book;
for ( keyVar  in firstarray)
{
    some += eval('bookmark[' + keyVar +']');
} 
some=some+powerby;  
some += "</table>";         
document.getElementById('location').innerHTML = some; 
                                                               
     
