/*************************************************************************************
7.13.06 - matt wade
	Page created

**************************************************************************************/

pic1= new Image(97,26);
pic1.src="http://images.harmonhomes.com/img/11/design/clean-hh_II/newdesign04/boxparts/processing-button_01.gif";

function nNavigatorWindow ( listing_Url ) {
	var newWindow;
	if(newWindow) { newWindow = window.close(); }
	newWind = window.open( listing_Url , "_blank", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, copyhistory=no, width=670, height=620")
	}
	
function correctedSpelling(city, state, rowid)
{
	document.forms['choose_a_state'].browsecity.value = city;
	document.forms['choose_a_state'].state_code.value = state;
	
	if (rowid > 0)
	{
		var url="/ajax_stub.php?update_spelling="+rowid;
		httpRequest("GET",url,true,genHandleResponse);
	}
	document.choose_a_state.submit();
}

function genHandleResponse()
{
	return true;
}

function submitenter(myfield,e)
{
	var keycode;
	if (window.event) keycode = window.event.keyCode;
	else if (e) keycode = e.which;
	else return true;

	if (keycode == 13)
   	{
   		fixForm(document.forms['choose_a_state']);
   		return false;
   	}
	else
   		return true;
}
