<!-- JAVASCRIPTS

function doClear(elementName)	{
	if (elementName.defaultValue == elementName.value) {
		 elementName.value = ""
	}
}

function getParentPosition (object) {
	var arrPos = new Array(4);

	if (!object) return r;
	else if (typeof object == 'string') object = document.getElementById(object);

	if (typeof object != 'object') return r;

	if (typeof object.offsetTop != 'undefined') {
		arrPos["height"] = object.offsetHeight;
		arrPos["width"] = object.offsetWidth;
		arrPos["left"] = 0;
		arrPos["top"] = 0;
		while (object && object.tagName != 'BODY') {
			arrPos["top"] += parseInt(object.offsetTop);
			arrPos["left"] += parseInt(object.offsetLeft);
			object = object.offsetParent;
		}
	}
	return arrPos;
}

function showSubmenu (id) {
	document.getElementById(id).style.display = "block";
}

function hideSubmenu (id) {
	document.getElementById(id).style.display = "none";
}


-->

