function swFaq(id) {
	var qs = ge('questions');
	var as = ge('answers');
	var aq = qs.getElementsByTagName('div');
	var aa = as.getElementsByTagName('div');
	// lo-lite all questions
	for (var ii=0;ii<aq.length;ii++) {
		aq[ii].style.backgroundColor = '#FFFFFF';
	}
	// hi-lite the question
	var q = ge('q'+id);
	q.style.backgroundColor = '#EEEEEE';
	// hide all answers
	for (var ii=0;ii<aa.length;ii++) {
		aa[ii].style.display = 'none';
	}
	// show the answer
	var a = ge('a'+id);
	a.style.display = 'block';
}

function popupFee() {
	var winFee = window.open('/Home/fee.cfm?ru=0', 'winFee', 'width=400px,height=400px,resizable=yes,status=yes');
	winFee.focus();
}