function framedoc(inhalt)
{
  var txt;
  txt='';
  txt=txt+'<html>';
  txt=txt+'<head><title>Galois Theory for Beginners</title></head>';
  txt=txt+'<FRAMESET framespacing="0" border="0" frameborder="0" ROWS="100%" COLS="100%,*">';
  txt=txt+'<FRAME NAME="main" SRC="'+inhalt+'" FRAMEBORDER=0 SCROLLING="yes" border="0" NORESIZE>';
  txt=txt+'<FRAME NAME="dummy"  FRAMEBORDER=0 SCROLLING="no" border="0" NORESIZE>';
  txt=txt+'</FRAMESET>';
  txt=txt+'</html>';
  return txt;
}

function start()
{
  var txt=framedoc("http://www.ams.org/bookstore?fn=20&arg1=stmlseries&item=STML-35");
  document.open();
  document.writeln(txt);
  document.close();
}