// Sends an email
function SendMail(object, e, fromMenu)
{
	object.href = 'mailto:';
	object.href += 'drmike';
	object.href += '@';
	object.href += 'hafkeychiropractic';
	object.href += '.';
	object.href += 'com';
	if(fromMenu == true)
	{
		object.href += '?subject=Appointment Request';
	}
	
	object.click();
}//end send mail

// Opens the map to the office
function OpenMap(e, object, newWin)
{
	object.href = "http://maps.google.com/maps?f=q&hl=en&q=47+E+1st+Avenue+mesa,az+85210&ll=33.414338,-111.83022&spn=0.007917,0.021458";
	if(newWin == true)
	{
		object.target = 'map';
	}
	object.click();	
}//OpenMap