var emails = new Array();
emails[0] = "info*crown-na.com";
emails[1] = "sheila.foster*legplatt.com";
emails[2] = "lyman.maynard*legplatt.com";
emails[3] = "robert.thompson*legplatt.com";
emails[4] = "chargerpursuit*legplatt.com";

function email(index)
{
	if ( index==4)
	{
		var subject = "2012 Dodge Charger Pursuit Contact";
		var address = "mailto:" + emails[index].replace(/\*/, "@") + "&subject=" + subject;
		location.href = address;
	}
	else
	{
		location.href = "mailto:" + emails[index].replace(/\*/, "@");
	}
	
}



