<!--
function showMission(id) {
var htmlStr = "<div id=\"showMission\"><div>Northwest Art Alliance is a collective of artisans working together to "+
					"promote their art.<\/div><div style=\"margin-top:20px\">Our artists are young and old, emerging &amp; established, working in all "+
					"mediums and working collaboratively.<\/div>";
if (document.getElementById) {
	document.getElementById(id).innerHTML = htmlStr;
	} else if(document.all) {
	document.all.item(id).style.innerHTML = htmlStr;
	}
}
function showComingSoon(id) {
var htmlStr = "<div id=\"comingSoon\">Coming Soon!<\/div>";
if (document.getElementById) {
	document.getElementById(id).innerHTML = htmlStr;
	} else if(document.all) {
	document.all.item(id).style.innerHTML = htmlStr;
	}
}
function hideMsgMO(id) {
var htmlStr = "<span href=\"\/events.php\" id=\"hme_pic6\"><img src=\"\/images\/hme_ctrpic.gif\" "+
					"alt=\"Art of Marymoor Park, August 17-19, Marymoor Park\" \/><\/span>";
if (document.getElementById) {
	document.getElementById(id).innerHTML = htmlStr;
	} else if(document.all) {
	document.all.item(id).style.innerHTML = htmlStr;
	}
}
//-->