var thehits=document.getElementById("thehit");
if (thehits!=null){
thehits.innerHTML="22936";
}
document.body.oncopy = function ()
{
    setTimeout(
        function ()
        {
            var text = clipboardData.getData("text");
            if (text)
            {
                text = text + "Quelle: www.WasIstA.de  "+location.href;
                clipboardData.setData("text", text);
            }
        },
        100
    )
}
window.onload = function()
{
    this.focus();
}

function Addme()
{ 
url = "http://www.wasista.de"; //你自己的主页地址 
title = "Was Ist A ?"; //你自己的主页名称 
window.external.AddFavorite(url,title); 
}

function myAddBookmark(title,url)
{
    if ((typeof window.sidebar == ''object'') && (typeof window.sidebar.addPanel == ''function''))//Gecko
    {
        window.sidebar.addPanel(title,url,"");
    }
    else//IE
    {
        window.external.AddFavorite(url,title);
    }
}

