function toogle(id)
 {
 var obj = document.getElementById ? document.getElementById(id) :
 document.all ? document.all(id) :null;
 if(!obj || !obj.style) return;
 obj.style.display = obj.style.display != 'none' ? 'none' : 'block';
 }