function theBlonk_loadWidget(_id, _extra)
{
var _script = document.createElement('script');
var _Url = "http://widget.theBlonk.com/?wid=" + _urlencode(_id) + "&p=" + _urlencode(window.location.href) + "&" + _extra;
_script.setAttribute("type","text/javascript");
_script.setAttribute("src",_Url);
document.getElementsByTagName('body')[0].appendChild(_script);
//alert(_Url);
}

function _urlencode (str) 
{
    str = (str+'').toString();
    return encodeURIComponent(str).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').replace(/\)/g, '%29').replace(/\*/g, '%2A').replace(/%20/g, '+');
}

window.onload = theBlonk_loadWidget(_widgetID,_widgetExtraData);