/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
function qa_answer(id)
{
    if(document.getElementById('answer'+id).style.display=='none')
        document.getElementById('answer'+id).style.display='block';
    else
        document.getElementById('answer'+id).style.display='none';
}


