//<script>
function mapAddress()
{
	var myAddress		=	"?Street=202 Arsenal Street&City=Watertown &State=MA&Zip=02472"
	var regexp = / /g
	var replace = "+"
	myAddress.toString()
	myAddress.replace(regexp, "+")
	var theAddress = myAddress.replace(regexp, "+")
	return theAddress;
}
		
function findMap(myAddress)
{
	var url = "http://maps.expedia.com/default.asp" + mapAddress(myAddress) 
	window.open(url, null, "width=650,height=400,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1;")
}