function windowOpener(URL, wName, pheight, pwidth, pscrollbars, ptop, pleft, plocation, pdirectories, pstatus, pmenubar, ptoolbar, presizable) {
	sParams = "height=" + pheight + ",width=" + pwidth + ",top=" + ptop + ",left=" + pleft + ",location=" + plocation + ",directories=" + pdirectories + ",status=" + pstatus + ",menubar=" + pmenubar + ",toolbar=" + ptoolbar + ",resizable=" + presizable + ",scrollbars=" + pscrollbars;
	newWindow = window.open(URL, wName, sParams);
	newWindow.focus();
}
			
function StateSelector(ID) {
	var sURL = "/utils/getState.asp?ID=" + ID;
	windowOpener(sURL, "states", 500, 340, "yes", 30, 30, "no", "no", "no", "no", "no", "no");
	return true;
}
function BlurState(nextField) {
	//alert("This is a non editable field. Please select a country and an appropriate list of states will be displayed for your selection.");
	var f="document.form0."+nextField
	//document.form0.entxt.focus();
	eval(f).focus()
}

