The Joust Outliner

The Joust Outliner

<!–
function buildRobotshtm() {
var e = null;
theMenu = parent.theMenu;

var theWin = window.open("", "Robots", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=400");
theWin.focus();

var d = theWin.document;
d.open()
d.writeln('robots.htmn’);
d.writeln(‘Copy and paste the following links into your robots.htm filen’);
d.writeln(‘

n’);

d.writeln(‘<!– Links for the search engines to follow… –>’);

var oktolist = true
for (var i = 0; i <= theMenu.count; i++) {
e = theMenu.entry[i];
if (e) {
if (e.url != '') {
oktolist = true;
for (var j = 0; j < i; j++) {
if (theMenu.entry[j].url == e.url) {
oktolist = false;
break;
}
}
if (oktolist) {
d.writeln('<A HREF="' + e.url + '"></A>');
}
}
}
}

d.writeln('

nn’);
}

//–>

Robots.htm

This page provides a list of pages on this site for search engines to use when indexing the
site. It should not actually appear in any Search Engine list.

Please click here to go to the correct page.

<!–
if (parent.theMenu) {
document.writeln('

Click here to build a new list of links.

‘);
}
//–>