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 niceprinting(myurl)
  {
   istr="";
   //rndnum=Math.floor(Math.random() * 1000000)
   //newurl="http://216.153.65.19/nice-printing.php?pg=" + myurl +"&rn=" + rndnum;
   newurl="http://216.153.65.19/nice-printing.php?pg=" + myurl;
   //istr="locationbar,menubar,personalbar,scrollbars,resizable,statusbar,toolbar,WIDTH="+650;
   istr="locationbar,menubar,personalbar,scrollbars,resizable,statusbar,toolbar";
   //alert(newurl);
   newwin=window.open(newurl,"",istr);
  }