/*
* ImprovedSource Standard JS Functions
*/

/* Fix Email Addresses
 */
if (document.all || document.getElementById) {
	replaceString = /-at-/gi; // The string used to substitute in the email address, usually the @ sign.
	if (document.all) {
		var links=document.all.tags("A");
	} else {
		if (document.getElementById)
			var links=document.getElementsByTagName("A");
	}
	
	for(i=0; i < links.length; i++)
		if(links[i].protocol == "mailto:") {
			links[i].href = links[i].href.replace(replaceString, new String("@"));
		}
}