// these are the standard functions

// this function opens a new window when passed the file and relative path as variable sPage
function newWindow(sPage) {
  window.parent.name="main";
  window.open(sPage, "newWin", "height=300,width=400,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0", "");
  return false;
}

// this function opens a new window when passed the file and relative path as variable sPage, and the 
// window height as winH, and the window width and winW
function newWindow2(sPage,winH,winW) {
  window.parent.name="main";
  window.open(sPage, "newWin", "height="+winH+",width="+winW+",menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0", "");
  return false;
}
