// JavaScript Document

// Hide and Show With Arrow


var browserName=navigator.appName;

function showState() {
	
	var theTD;
	var theTD2;
	var countryField;
	
	theTD = document.getElementById('state');
	theTD2 = document.getElementById('country');
	countryField = document.getElementById('WFF014');
	
	if (browserName=="Microsoft Internet Explorer") {
			theTD.style.display="inline";
		} else {
			theTD.style.display="table-cell";
		}
	
	theTD2.style.display="none";
	countryField.value="USA";
	
}

function showCountry() {

	var theTD;
	var theTD2;
	var countryField;
	var stateField;
	
	theTD2 = document.getElementById('state');
	theTD = document.getElementById('country');
	countryField = document.getElementById('WFF014');
	stateField = document.getElementById('WFF012');
	
	if (browserName=="Microsoft Internet Explorer") {
			theTD.style.display="inline";
		} else {
			theTD.style.display="table-cell";
		}
	
	theTD2.style.display="none";
	countryField.value="";
	stateField.selectedIndex=0;

		
}

function showResident() {

	var theTD;
	var theResident;
	
	theTD = document.getElementById('resident');
	theResident = document.getElementById('WFF015');
		
if (theTD.style.display=="none") {
	
		if (browserName=="Microsoft Internet Explorer") {
			theTD.style.display="inline";
		} else {
			theTD.style.display="table-cell";
		}
	}
	else {
	theTD.style.display="none";

	}

}