function findObject(objId) 
{
	if (document.getElementById)
		return document.getElementById(objId);

	if (document.all)
		return document.all[objId];
}


function configPage() {
	if (window == top) {
		findObject("titleTable").style.display = "";
		for (i = 1; i < 11; i++) {
			cell = findObject("navigationCell" + i);
			if (cell == null)
				break;
			else
				cell.style.display = "";
		}
	}
	else {
		findObject("titleTable").style.display = "none";
		for (i = 1; i < 11; i++) {
			cell = findObject("navigationCell" + i);
			if (cell == null)
				break;
			else
				cell.style.display = "none";
		}
	}
	showTitle(asdocTitle);
}

function showTitle(title) {
	top.document.title = title;
}

function loadClassListFrame(classListFrameURL) {
	if (top.packageFrame.classListFrame != null)
		top.packageFrame.classListFrame.location = classListFrameURL;
}