// JavaScript Document 
// 
// Purpose:  provide method to hide and show text in a list
//
//
    function hide(x) {
     var x1 = x ;
     document.getElementById(x1).style.display = "none" ;
 }
 function show(x) {
     var x1 = x ;
     document.getElementById(x1).style.display = "block" ;
 }
 function reset() {
        hide('q1') ;
        hide('q2') ;
        hide('q3') ;
        hide('q4') ;
        hide('q5') ;
        hide('q6') ;
        hide('q7') ;
        hide('q8') ;
        hide('q9') ;
        hide('q10') ;
        hide('q11') ;
        hide('q12') ;
        hide('q13') ;
        hide('q14') ;
        hide('q15') ;
        hide('q16') ;
        hide('q17') ;
        hide('q18') ;
        hide('q19') ;		
 }
 function view(x) {
        reset() ;
        show(x) ;
 }
 function view2(x) {
	    reset2() ;
		show(x) ; 
 }
