window.onLoad = reloadIt;

function reloadIt(){  
	document.location = document.location;
}
function AddCounty(countyid, stateid) {
	window.open('/check_county.aspx?stateid=' + stateid + '&countyid=' + countyid, 'AddCounty', 'top=1,left=1,width=550,height=450');
}
function openWindow(loc,wdt,hgt) {

	var top_pos = document.body.scrollTop + 120;
	
	window.open(loc + '&win=true', 'win', 'height=' + hgt + ',width=' + wdt + ',top=' + top_pos + ',left=200');

}