
function getDirections()
{
	if($('origin') && $F('origin').length > 0)
	{
		window.open('http://maps.google.com/maps?f=d&hl=en&geocode=&time=&date=&ttype=&saddr='+$F('origin')+'&daddr=1400+College+Dr,+Waco,+TX+76708&sll=31.524703,-97.058029&sspn=0.409128,0.6427&ie=UTF8&z=9&om=1');
	}
	else
	{
		alert('Please enter your address.\nExample: 1234 Elm St, Dallas, TX, 70707');
	}
}
