function processPage(idx){
	if ( aseForm.zip.value == "" ){
		alert("Invalid zip code.");
		aseForm.zip.focus();
		return false;
	}

	aseForm.idx.value = idx;

	return true;
}

function goLite(FRM,BTN){
	window.document.forms[FRM].elements[BTN].style.color = "#898989";
}

function goDark(FRM,BTN){
	window.document.forms[FRM].elements[BTN].style.color = "#000000";
} 



