function emailPopup(str)
{
	str = String(str).replace('mailto:','').replace('mailTo:','');
	var win=open("/contact-us/email-form.aspx?email="+escape(str),"emailPopup","width=600px,height=400px,resizable=yes,scrollbars=yes,toolbar=no,directories=no,status=no,menubar=no");
	win.focus();
	return false
}

function emailInit()
{
	var i;
	var anchors = document.getElementsByTagName("a");
	if(anchors != null)
	{
		for(i=0;i<anchors.length;i++)
		{
			var anchor = anchors[i];
			if(anchor.href.length >= 7 && anchor.href.substr(0,7).toLowerCase() == "mailto:")
			{
				anchor.onclick = function() { return emailPopup(this) };
			}
		}
	}
}
