function ShowMap(street, city)
	{
	alert("Note: You should verify this location with your coach.")
	window.open("http://maps.yahoo.com/py/maps.py?BFCat=&Pyt=Tmap&newFL=Use+Address+Below&addr="+street+"+"+city+"&country=us", 
				"newwindow", 
				"resizable=yes,toolbar=yes,menubar=yes,statusbar=yes,scrollbars=yes,status=yes,location=yes,directories=yes,height=600,width=650")
	}


function ShowDirections(type, street, city)
	{
	// type = "T" for display stored directions or "Y" for display yahoo directions
	// street = street address if type = "Y", location if type = "T"
	// city = city_st_zip if type = "Y", directions if type = "T"
	if (type == "T")
		{
		document.frm.loc.value = street
		document.frm.dir.value = city
		subwin = window.open("", 
				"dirWin", 
				"resizable=yes,toolbar=yes,menubar=yes,statusbar=yes,scrollbars=yes,status=yes,location=yes,directories=yes,height=500,width=650")
		document.frm.submit()
		}
	else// pull from yahoo
		{
		open_url = "http://maps.yahoo.com/dd_result?q1=13010+Mitchell+Point+Road+Newport+News+VA+23602+us&q2="+street+"+"+city+"+us"
		alert("Note: You should verify these directions with your coach.")
		window.open(open_url, 
				"dirWin", 
				"resizable=yes,toolbar=yes,menubar=yes,statusbar=yes,scrollbars=yes,status=yes,location=yes,directories=yes,height=600,width=650")
		}
	}

