

function DoMenu(emid,img,more)
{		
	 if(document.getElementById(emid).style.display==""){
  document.getElementById(emid).style.display="none";
  document.getElementById(more).style.display="";
  document.getElementById(img).src='../images/faq/close.gif';
 }else{
  document.getElementById(emid).style.display="";
  document.getElementById(more).style.display="none";
  document.getElementById(img).src='../images/faq/open.gif';
 }

}




