function toggle_visibility(id) {
var e = document.getElementById(id);
if(e != null) { if(e.style.display == 'none') { e.style.display = 'block'; } else { e.style.display = 'none'; } } }

function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}
