﻿
function show_hide(d1, a1, d2, a2) {
    document.getElementById(d1).style.visibility = a1;
    document.getElementById(d2).className = a2;
}
	