﻿
$(function()
{

//DoInitBookmarks();

});

function getURL()
{
    return escape(window.location.href);
}
function getTitle()
{
    return escape(document.title);
}

function GoBookmark(id)
{
    var x="";
    if(id=="digg")
        x="http://digg.com/submit?phaze=2&url=" +  getURL();
        
    if(id=="delicious")
        x="http://del.icio.us/post?url=" + getURL();
        
    if(id=="yahoo")
        x="http://myweb2.search.yahoo.com/myresults/bookmarklet?&u=" + getURL()
        
    if(id=="technorati")
        x="http://technorati.com/signup/?f=favorites&Url=" + getURL()
        
    if(id=="reddit")
        x="http://reddit.com/submit?url=" + getURL() + "&title=" + getTitle();
        
    if(id=="furl")
        x="http://www.furl.net/storeIt.jsp?&u=" + getURL();
        
    if(id=="simpy")
        x="http://www.simpy.com/simpy/LinkAdd.do?href=" + getURL();
        
    if(id=="stumbleupon")
        x="http://www.stumbleupon.com/submit?url=" + getURL() + "&title=" + getTitle();
        
    if(id=="twitter")
        x="http://twitter.com/home?status=" + getTitle() + ": " + getURL() ;
        
    if(id=="facebook")
        x="http://www.facebook.com/share.php?u=" + getURL() ;
        
    window.location=x;
    

}

function DoInitBookmarks()
{
    var xx="";
	xx +='<A HREF="http://digg.com/submit?phaze=2&url='+window.location.href+'"><img src="http://www.manhattanservice.com/tools/logo-digg.gif" border="0"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://del.icio.us/post?url='+window.location.href+'"><img src="http://www.manhattanservice.com/tools/del_icio_us.png" border="0"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://myweb2.search.yahoo.com/myresults/bookmarklet?&u='+window.location.href+'"><img src="http://www.manhattanservice.com/tools/yahoo.gif" border="0" height="20"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://technorati.com/signup/?f=favorites&Url='+window.location.href+'"><img src="http://www.manhattanservice.com/tools/technorati.jpg" border="0" height="20"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://reddit.com/submit?url='+window.location.href+'&title='+document.title+'"><img src="http://www.manhattanservice.com/tools/reddit.jpg" border="0" height="20"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://www.furl.net/storeIt.jsp?&u='+window.location.href+'"><img src="http://www.manhattanservice.com/tools/furl.gif" border="0" height="20"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://www.simpy.com/simpy/LinkAdd.do?href='+window.location.href+'"><img src="http://www.manhattanservice.com/tools/sb_simpy.jpg" border="0" height="20"/></A>&nbsp;&nbsp;';
	xx +='<A HREF="http://www.stumbleupon.com/submit?url='+window.location.href+'&title='+document.title+'"><img src="http://www.stumbleupon.com/images/stumble1.gif" border="0" height="20"/></A>&nbsp;&nbsp;';
    $('.bookmark_panel').html(xx);

}


