function mynewwindow(myurl,xsize,ysize)
  {
   istr="";
   istr="scrollbars,resizable,WIDTH=" + xsize + ",HEIGHT=" + ysize;
   //alert(istr);
   newwin=window.open(myurl,"",istr);
  }

function mynewwindow2(myurl)
  {
   istr="";
   istr="locationbar,menubar,personalbar,scrollbars,resizable,statusbar,toolbar";
   alert("You are leaving the Innovative Learning Solutions, Inc. web site. Have a good time browsing at our business partner web site!");
   newwin=window.open(myurl,"",istr);
  }

function mynewwindow3(myurl)
  {
   istr="";
   istr="locationbar,menubar,personalbar,scrollbars,resizable,statusbar,toolbar";
   newwin=window.open(myurl,"",istr);
  }

function mynewwindow4(myurl)
  {
   istr="";
   istr="menubar,scrollbars,resizable,statusbar";
   newwin=window.open(myurl,"",istr);
  }

// Martin January 2004
//open Window in a given position
function mynewwindowPos(myurl,xsize,ysize,xpos,ypos)
  {
   istr="";
   istr="scrollbars,resizable,WIDTH=" + 1 + ",HEIGHT=" + 1;
   newwin=window.open(myurl,"",istr);
   newwin.moveTo(xpos,ypos);
   newwin.resizeTo( xsize, ysize);
  }