function goToMap(city, state){
	var sLink='http://www.mapquest.com/cgi-bin/ia_free?width=800&height=600&city=';
	sLink = sLink + city + '&state=' + state;
	window.location = sLink;
	return false;
}

function TourStop(sDT,sComment,sLoc,sLink,sCity,sState) {
	document.write('<tr><td>' + sDT + '</td><td>');
	if (sComment!='_') document.write(sComment + '<br>');
	if (sLoc!='_') {
		if (sLink!='_') document.write('<a href="http://' + sLink + '">');
		document.write(sLoc);
		if (sLink!='_') document.write('</a>');
	}
	document.write('</td><td>');
	document.write('<a href="javascript:void(0);" onclick="return ');
	document.write("goToMap('");
	document.write(sCity + "','" + sState + "');" + '">' + sCity + ', ' + sState + '</a>');
	document.write('</td></tr>');
}