function showhide(what){
var subs = document.getElementById(what).style;
if(subs.display=='none') // 若物件為隱藏則設回預設值
subs.display=''; // 預設值為'inline'
else
subs.display='none'; // 若物件不為隱藏則隱藏
}

