// $Id: scripts.js,v 1.2.2.1 2005/05/24 19:33:47 Administrator Exp $

function doExpand(para) {
  //expand or collapse the paragraph
  if (para.style.display == "none") {
    para.style.display = "";
  } else {
    para.style.display = "none";
  }
}

function openWin(url, width, height) {
  wnd = window.open("", "shot", "height=" + (height + 10) + ",width=" + (width + 10));
  wnd.location.href = url;
}
