	function getNextState(state,formname) {
		if(state=="DC") {
			document.getElementById(formname).reset();
			window.open("http://www.stategunlaws.org/2006_dc.html",'_blank','width=560,height=570,resizable=0,scrollbars=0,toolbar=0,location=0,directories=0,status=0,menubar=0,copyhistory=0');
			
			return false;

		} else {
			document.getElementById(formname).submit();
			return true;
		}
	}