/* Content copyright David B. Zwiefelhofer. All rights reserved. */

	function get_listing(x) {
		var mID = "";
		var i = 0;
		while (i < x.length) {
			if ('0123456789'.indexOf(x.charAt(i)) >= 0) {
				mID += x.charAt(i);
			}
			i++;
		}
		if (mID.length > 0) {
			window.location.href="http://www.fsbomadison.com/details.asp?ID="+mID;
		}
	}
