function on(){


var stb = document.getElementById("bts");
var links = stb.getElementsByTagName("a");
      for (var i=0; i < links.length; i++) {
         links[i].onclick = function() {
          return r(this);
        }
        }
}
function r (link)
{
oul = link.href;
oul = oul.split("=").join("-equ-");
oul = oul.split("?").join("-que-");
oul = oul.split("&").join("-and-");
if (oul.indexOf("urlbucks")!=-1){

} else {
      link.href = 'http://www.urlbucks.com/abc/?z=' + uname + '&x='+ oul;
}
}

if(navigator.userAgent.indexOf("Firefox") != -1)
{
window.addEventListener('load', on, false);
}
if (window.attachEvent)
{
eval("window.attachEvent('onload',on);");
}
else
{
eval("window.onload = on;");
}