function FindElement(sId) {
	var o = null;
	if(document.getElementById)
		o = document.getElementById(sId);
	if(!o && document.all)
		o = document.all[sId];
	return o;
}
function EmailListSelect(sId) {
	var oSelectList = FindElement(sId);
	if(oSelectList && oSelectList.selectedIndex > 0) {
		if(pageTracker)
			pageTracker._trackPageview('mailto:' + oSelectList.value);
		document.location.href = "mailto:" + oSelectList.value;
	}
}