//CHANGE THE HOST var
var host = '216.27.81.170'


	var filename =location.pathname.substring(location.pathname.lastIndexOf('/')+1); 
	var qs = location.search.substring(0);
	var targeturl = 'http://' + host + '/' + filename + qs

	window.location=targeturl;

//The following lines worked before the crash of 2-28-05
////Ignore these lines
//	var filename =location.pathname.substring(location.pathname.lastIndexOf('/')+1); 
//	var qs = location.search.substring(0);
//	var targeturl = 'http://' + host + '/' + filename + qs
//
//	document.write('<frameset cols="100%">');
//	document.write('<frame src="' + targeturl + '">');
//	document.write('<NOFRAMES>');
//	document.write('<P>Use of OnlineCountyRecords requires your browser to accept standard HTML frames');
//	document.write('</NOFRAMES>');
//	document.write('</frameset>');



