// JavaScript Document

function showFormEnd() {
		showElement('form_end');
	}

function showIndiv() {
		showElement('view_faqs');
		hideElement('busin_det');
		showFormEnd();
		}
		
function showBusin() {
		showElement('busin_det');
		hideElement('view_faqs');
		showFormEnd();
		}
		
function hideFormEnd() {
		hideElement('busin_det');
		hideElement('view_faqs');
		hideElement('form_end');
		}
		
function fnHighlightText(oField){
	if(oField.value == "-"){
		oField.value = ""
	}
}

function displayElements(value) {
	switch (value) {
		case 'none': hideFormEnd(); break;
		case 'business': showBusin(); break;
		case 'consumer': showIndiv(); break;
		}
	}