function showForm(id,num){
    
for(i = 1; i <= num; i++){
    
    temp = "form"+i;
    choice = "choice"+i;
	choiceradio = "choice-radio"+i;
    
    if(id == temp){
    document.getElementById(temp).style.display = "block";
    document.getElementById(choice).style.color = "#993E22";
	document.getElementById(choiceradio).checked = true;
    } else {
    document.getElementById(temp).style.display = "none";
    document.getElementById(choice).style.color = "";
    }
}

}
