function makepage(src)
{
  // We break the closing script tag in half to prevent
  // the HTML parser from seeing it as a part of
  // the *main* page.

  return "<html>\n" +
	"<head>\n" +
	"<title>CITY CELEBRATION CENTRE</title>\n" +
	"<script>\n" +
	"function step1() {\n" +
	"  setTimeout('step2()', 10);\n" +
	"}\n" +
	"function step2() {\n" +
	"  window.print();\n" +
	"  window.close();\n" +
	"}\n" +
	"</scr" + "ipt>\n" +
	"</head>\n" +
	"<body onLoad='step1()'>\n" + src  +
	"</body>\n" +
	"</html>\n";
}
