// JavaScript Document

function dropCheck(){
	theForm = "aForm";
	fieldName = "searchCode";
	theItemSelected = document[theForm][fieldName].options[document[theForm][fieldName].selectedIndex].value;
	
	if(theItemSelected == 4){
		document.getElementById('StateRow').style.display = '';
		document[theForm]['state'].disabled=false;
		document[theForm]['state'].options[0].selected = true;
		document[theForm]['searchPhrase'].value = '';
		document.getElementById('SearchCriteriaRow').style.display = 'none';
	}
	else{
		document[theForm]['state'].disabled=true;
		document.getElementById('StateRow').style.display = 'none';
		document.getElementById('SearchCriteriaRow').style.display = '';
	}
}



function popWindow(sURL) {
	alert("You are now leaving BankUnited.com and entering a partner site managed by a third party.")
}
