<!--
	function openPopup(destinationURL, windowName, windowWidth, windowHeight) {

		if (!windowName) windowName = 'popup';
		if (!windowWidth) windowWidth = 600;
		if (!windowHeight) windowHeight = 450;

		windowLeft = (screen.width - windowWidth) / 2;
		windowTop = (screen.height - windowHeight) / 2;
		if (windowLeft < 0) windowLeft = 0;
		if (windowTop < 0) windowTop = 0;

		windowOptions = 'width=' + windowWidth + ',height=' + windowHeight + ',top=' + windowTop + ',left=' + windowLeft + ',location=no,status=no,resizable=no,menubars=no,toolbars=no,scrollbars=yes';
		window.open(destinationURL, windowName, windowOptions);

	}

	function displaySubItem(itemID) {

		if (document.getElementsByTagName) {
			theDivs = document.getElementById('content').getElementsByTagName('div');
		} else if (document.all) {
			// this isn't ideal and means we'll have all sorts
			// of other elements to loop through. No way around
			// it though.
			theDivs = document.all['body'];
		}

		for (c = 0; c < theDivs.length; c++) {
			theDiv = theDivs[c];

			// if the id of the div starts with subitem, we know
			// this is one to process
			if (theDiv.id.substring(0, 7) == "subitem") {

				theDivsID = theDiv.id.substring(7);
				theList = document.getElementById('list' + theDivsID);
				if (theDivsID == itemID) {
					if (theDiv.style.display == 'block') {
						theDiv.style.display = 'none';
						theList.className = 'list-arrowright';
					} else {
						theDiv.style.display = 'block';
						theList.className = 'list-arrowdown';
					}
				} else {
					theDiv.style.display = 'none';
					theList.className = 'list-arrowright';
				}

			}
		}


	}

//-->