var ie5=document.all && !window.opera
var ns6=document.getElementById

function showform(formname){
  postform=ie5? document.all.formname : document.getElementById(formname);
  postform.style.display = "block";
}
