// Send Friend

function sendFriend( mailToAddress, messageId ) {
	var subject, body;
	switch (messageId) {
		case "Sioux":
			subject = "Play as the Sioux in Age of Empires III: The WarChiefs";
			body = "Control the field of battle with your powerful cavalry as the Sioux in Age of Empires III: The WarChiefs, the new expansion to Age of Empires III from Ensemble Studios. Now available in stores. Visit http://www.ageofempires3.com for more information.";
			break;
		case "Iroquois":
			subject = "Play as the Iroquois in Age of Empires III: The WarChiefs";
			body = "Take full advantage of European technology as the Iroquois in Age of Empires III: The WarChiefs, the new expansion to Age of Empires III from Ensemble Studios. Now available in stores. Visit http://www.ageofempires3.com for more information.";
			break;
		case "Aztec":
			subject = "Play as the Aztecs in Age of Empires III: The WarChiefs";
			body = "Assemble dominating armies with the Aztecs in Age of Empires III: The WarChiefs, the new expansion to Age of Empires III from Ensemble Studios. Now available in stores. Visit http://www.ageofempires3.com for more information.";
			break;
		default:
			subject = "Age of Empires III: The WarChiefs expansion from Ensemble Studios!";
			body = "Experience the power of the War Chief! In Age of Empires® III: The WarChiefs, play as one of three new civilizations - Aztec, Iroquois, or Sioux - each with unique units, buildings, and abilities that will test your strategic mettle. Now available in stores. Visit http://www.ageofempires3.com for more information.";
	}
	url = "mailto:" + mailToAddress + "?subject=" + subject + "&body=" + body;	
	window.open( url, "_self" );
}

