function sendTo(userName, domainName) {
    document.write("<a href=mailto:"+userName+"@"+domainName+">"+userName+"@"+domainName+"</a>");
}

function linkToPOSNA(site) {
	linkToPOSNA(site,false);
}
function linkToPOSNA(site,newWindow) {
	var notice = "This link will take you to the POSNA website where you can Find a Physician.  You are solely responsible for your interactions with this website.  Press OK to continue.";
	if (confirm(notice)) {
		if (newWindow) window.open(site,"_blank");
		else window.location = site;
	}
}