// JavaScript Document

function _st(el) { if (el) window.status = String(el.innerHTML); }
function cls() { window.status = ''; }
function toggle(id,sh) { 
 var hr = document.getElementById('tog_'+id);
 var el = document.getElementById('more_'+id);
 if (hr.blur) hr.blur();
 el.style.display = sh?'block':'none';
 hr.innerHTML = sh?'<img alt=Close src=images/cls.gif border=0>':'<img alt=View src=images/viewfull.gif border=0>';
 hr.onclick = function() { toggle(id,!sh); }
}
