
////////////////////////////////////////////////////////////
//Copyright: Sandip Debnath (sandipdebnath@hotmail.com). 
//You have to keep this notice to use it, and can not 
//change anything below this line.
////////////////////////////////////////////////////////////

function FaqAnswer(obj, objh) 
{
	var el = document.getElementById(obj);
        var elh = document.getElementById(objh);
        

	if ( el.style.display != "none" ) 
        {
		el.style.display = 'none';
                elh.className = 'closefaq';                
	}
	else 
        {
		el.style.display = '';
                elh.className = 'openfaq';
	}
}











