////////////////////////////////////////////////////////////////////////////
// Pagescript v 1.1
// Crossbrowser (Opera/Netscape/IE6)
// Written by Justin Gan
// 20/04/04
////////////////////////////////////////////

function pagestart () {
	if (parent.document.getElementById("menu_target") == null)
	{
		// We have arrived at this page directly and without the rest of the
		// menu bars, so reload this page into the main one
		var url = document.URL;
		var pos = url.lastIndexOf("/cgi-bin/");
		if (pos > 0)
		{
			// strip the lead characters from the url
			url = url.substring(pos + 1);
		}
		self.location = "http://www.thequiche.com/index.html?redirect=" + url;
	}
	
	parent.document.title = document.title;
	resize ();
}

function resize () {
	var height = document.getElementById ("content").clientHeight;
	var space = 2 * document.getElementById ("content").cellSpacing;
	if (height - space % 133 != 0)
		document.getElementById ("filler").style.height = 133 - ((height - space) % 133) + 2*document.getElementById ("content").cellPadding;
}

