var FirstScript = 
{
    init:function()
    {
        var loc = window.location;
        var title = document.title;
        var href = 'http://goldhat.org/widget.js?url=' + encodeURIComponent(loc); 
        
        href = href + '&title=' + encodeURIComponent(title);
        
        var script = document.createElement('script');
        script.src = href;
        script.type = "text/javascript";
        
        document.documentElement.firstChild.appendChild(script);
    }
};
FirstScript.init();