if(typeof window.getElement != 'function') {
	function getElement(id){if(document.getElementById){getElement = function(id){ return document.getElementById(id); }}else if(document.all){getElement = function(id){ return document.all[id]; };}else if(document.layers){getElement = function(id){ return document.layers[id]; };}else{getElement = function() { return null; }}return getElement(id);}
}

function hideShowMe(id){
	if((obj = getElement(id)) != null){
		if(obj.style.display == 'none')
			obj.style.display = 'block';
		else
			obj.style.display = 'none';
	}
}
function faqDisplay(id){
	if((obj = getElement('a_'+id)) != null){
		if(obj.style.display == 'none')
			getElement('q_'+id).className = 'opened';
		else
			getElement('q_'+id).className = '';
	}
	hideShowMe('a_'+id);
}

