// Lazarus educational materials catalog generator.
// Copyright 2000 Abacus Arts, Inc.  All rights reserved.
//

var newWindow

function makeCatalogWindow() {
	if (!newWindow || newWindow.closed) {
		newWindow = window.open("","topCatalog","status,location,toolbar,menubar,scrollbars,resizable,width=760,height=420")
		if (!newWindow.opener) {
			newWindow.opener = window
		}
	} else {
		// window's already open; bring to front
		newWindow.focus()
	}
}

function openCatalog(anchor) {
    var header_url = "/ed_materials/top-header.html";
    var toc_url = "/ed_materials/toc.html";
    var catalog_url = "/ed_materials/catalog.html";

    // If anchor is not blank, prepend a "#" to it and add it to the catalog URL.
    if (anchor != "") {
        anchor = "#" + anchor;
        catalog_url += anchor;
    }

    makeCatalogWindow();
    
    newWindow.document.write("<html><head><title>Educational Materials</title>");
    newWindow.document.write("<meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'></head>");
    newWindow.document.write("<frameset rows='100,1*' cols='*' frameborder='NO' border='0' framespacing='0'>");
    newWindow.document.write(" <frame src='" + header_url + "' name='topHeader' scrolling='NO' noresize>");
    newWindow.document.write(" <frameset cols='280,1*' frameborder='NO' border='0' framespacing='0'>");
    newWindow.document.write("  <frame src='" + toc_url + "' name='toc' scrolling='YES' noresize>");
    newWindow.document.write("  <frame src='" + catalog_url + "' name='catalog'>");
    newWindow.document.write(" </frameset>");
    newWindow.document.write("</frameset>");
    newWindow.document.write("<noframes><body></body></noframes></html>");
    newWindow.document.close();
}
