function ReplaceAnchors()
{
	var arrAs = document.getElementsByTagName('a');
        for(var i = 0; i < arrAs.length;i++)
	{
		if(arrAs[i].getAttribute('skipRewrite') == null)
		{
			/*var parent = arrAs[i].parentNode;
			var newNode = document.createElement('span');
                        var url = arrAs[i].getAttribute('href');
                        if(url.indexOf('http://') == -1)
                        {
                             url = 'http://www.lionsclubs.org' + url;
                        }
                        if(url.indexOf('-print.php') != -1)
                        {
                             url = url.replace('-print.php', '.php');
                        }
			var newTextNode = document.createTextNode(' (' + url + ') ');
			newNode.appendChild(newTextNode);
			parent.insertBefore(newNode, arrAs[i].nextSibling);*/
			arrAs[i].setAttribute('href','#');
		}
	}
}
ReplaceAnchors();