function cmCustomLinkClickHandler(link) { 
        if (link.href.indexOf(".pdf") > -1) { 
			var pdfName = " PDF: " + (link.href.substring(link.href.lastIndexOf("/")+1,link.href.lastIndexOf(".pdf")+4));
			if(document.title) {pdfName += " PAGE: " + document.title}
			cmCreatePageviewTag(pdfName, "BBHPUBLIC PDF"); 
	}
      else if (link.href.indexOf("mailto") > -1) { 
			var docName = " EMAIL: ";
			if(link.name) {docName += link.name}
			else if(document.title) {docName += document.title}
			var catName = "EMAIL SHARE";
			if(document.title) {catName += ": " + document.title}
			//add to catid too....
			cmCreateConversionEventTag(docName,"2",catName); 
        }
}


