if (navigator.appName == "Netscape")
	{
		// capture the querystring parameters //
		//alert ( "we are here!" );
		var qs = new Querystring();
		var cityID = qs.get("cityID");
		var cityName = qs.get("cityName");
		var highwayName = qs.get("highwayName");
		
		var countyName = qs.get("countyname"); 		// NEW //
		var routeName = qs.get("routename"); 		// NEW //
		var industryID = qs.get("industryID");		// NEW //
		var industryName = qs.get("industryName");	// NEW //
		var alphaID = qs.get("alphaID")				// NEW //
		
		gCountyParam = countyName;					// NEW //
		gRouteParam = routeName;					// NEW //
		gIndustryIDParam = industryID;				// NEW //
		gIndustryParam = industryName;				// NEW //
		
		//alert ( "Name of county: " + countyName );			
		
		if ( countyName )
		{
			//alert ( "we made it this far ... " );
			getCountyTowns(countyName);
		}
		else if ( routeName )
		{
			getCommuterTowns(routeName);	
		}
		else if ( industryID )
		{
			getIndustryJobs(industryID,industryName);
			//alert ( industryID );
		}
		else if ( alphaID )
		{
			getEmployer(alphaID);
		}
	}
	
    /* for Mozilla */
	if (document.addEventListener) 
		{document.addEventListener("DOMContentLoaded", init, false);}
				
	/* for Internet Explorer */
	/*@cc_on @*/
	/*@if (@_win32)
		document.write("<script id=__ie_onload defer src=javascript:void(0)><\/script>");
		var script = document.getElementById("__ie_onload");
		script.onreadystatechange = function() {
			if (this.readyState == "complete") {
				init(); // call the onload handler
			}
		};
	/*@end @*/

	/* for Safari */
	if (/WebKit/i.test(navigator.userAgent)) { // sniff
		var _timer = setInterval(function() {
			if (/loaded|complete/.test(document.readyState)) {
				init(); // call the onload handler
			}
		}, 10);
	}		
		
	/* for other browsers */
	//window.onload = init;
