// JavaScript Document

//FAQ Q & A display functions
answer=null;
function displayAnswer(theQ){
	//hide any previous answers if still showing
	if (answer!=null){
		lastAnswer=answer;
		document.getElementById(lastAnswer).style.visibility="hidden";
		}
	
	//show answer
	answer="answer"+theQ;
	document.getElementById(answer).style.visibility="visible";
	
}

function closeAnswer(theQ){
	answer="answer"+theQ;
	document.getElementById(answer).style.visibility="hidden";
}

//MAIN NAV roll over functions
function mouseover(theBttn){
	
	document.getElementById(theBttn).style.backgroundColor='#98282b';
	
	}

function mouseout(theBttn){
	
	document.getElementById(theBttn).style.backgroundColor='#fbaa1d';
	
	} 
	
//show/hide 'Where do I find my Model Number' window

function showManual(){
document.getElementById('modelnum').style.visibility="visible";

}
function hideManual(){
document.getElementById('modelnum').style.visibility="hidden";

}

function  blankField(field){
field.value="";
	}
	
	
	
	
	
	
	
