function trackingButton(buttonDomain, buttonPath, buttonStyle, buttonLink, buttonScript)
{
button = "";
button = button + "<img src=\"" + buttonDomain + "/tracking_button?external_stats=1&amp;url=" + escape(document.URL.replace(/\//g, "|"))  + "&amp;referer=" + escape(document.referrer.replace(/\//g, "|")) + "&amp;img=" + escape(buttonPath.replace(/\//g,"|")) + "\"";
if(buttonStyle) {
button = button + " style=\"" + buttonStyle + "\"";
}
button = button + " />";
if(buttonLink) 	{
button = "<a href=\"" + buttonLink + "\" " + buttonScript + " target=\"_new\">" + button + "</a>";
}
return button;
}

buttonDomain = "http://cps.p2.ibctv.com";
buttonPath = "/etc/common/cr/tracking.gif";
buttonStyle = "border: 0";
buttonLink = "";
buttonScript = "";

document.write(trackingButton(buttonDomain, buttonPath, buttonStyle, buttonLink, buttonScript));