function OpenWindow(href, name, width, height, resizable, scrollbars, menubar, toolbar, directories, location, status) 

{
  var wf = "";         
  wf = wf + "width=" + width;
  wf = wf + ",height=" + height;
  wf = wf + ",resizable=" + (resizable ? "yes" : "no");
  wf = wf + ",scrollbars=" + (scrollbars ? "yes" : "no");
  wf = wf + ",menubar=" + (menubar ? "yes" : "no");
  wf = wf + ",toolbar=" + (toolbar ? "yes" : "no");
  wf = wf + ",directories=" + (directories ? "yes" : "no");
  wf = wf + ",location=" + (location ? "yes" : "no");
  wf = wf + ",status=" + (status ? "yes" : "no");                   
  window.open(href,name,wf);
}


