//**************************************************************************************
//
//  Javascript functions globally supporting Ballpark Savings Estimator
//
//**************************************************************************************


function filterks(code){
	var rc;
	rc=0;
	if(code>44 && code<58){rc=code;}
	if(code==13){rc=code;}
	return rc;
}

function FlipEdited(n){
	//tracks which TSP contribution field the user last edited, default is percentage
	document.getElementById("tspedited").value=n;
}