function doHelpLinks()
			{
			if(!document.getElementsByTagName) return;
			var anchors = document.getElementsByTagName("a");
			for(var i=0; i<anchors.length; i++)
				{
				var anchor = anchors[i];
				if(anchor.getAttribute("href") 
				&& anchor.getAttribute("title") == "Publish")
        			{
					var theinner=anchor.innerHTML;
					anchor.innerHTML = theinner + "<img src='http://site.sizzletwist.com/ystore/images/create-db.gif' border='0' usemap='#map' style='border-left:2px; border-left-style:solid; border-left-color:#EC7F52'/>";
					}
				}
			}
function dopublishLinks()
			{
			if(!document.getElementsByTagName) return;
			var anchors = document.getElementsByTagName("td");
			for(var i=0; i<anchors.length; i++)
				{
				var anchor = anchors[i];
				if(anchor.getAttribute("bgcolor") == "#cccccc")
        			{
					var theinner=anchor.innerHTML;
					anchor.innerHTML = theinner + "<img src='http://site.sizzletwist.com/ystore/images/create-db.gif' border='0' usemap='#map'/ style=' border-left:2px; border-left-style:solid; border-left-color:#EC7F52'>";
					}
				}
			}

window.onload = function()
{
	doHelpLinks();
	dopublishLinks()
}