function doprint(type, id)
{
  window.open("print.php?type=" + type + "&id=" + id, "printWindow",
    "width=516,height=500,scrollbars=yes,resizable=yes").focus();
}

function toggle(name, image_closed, image_open)
{
  target = document.getElementById(name);
  if(target.style.display == "none") target.style.display = "";
  else target.style.display = "none";
}
