<!--
function cellcolorin(id) {
	var sStyle = ".style";
	var Cell = eval(id + sStyle);

	Cell.backgroundColor = "#77DDFF";
	Cell.cursor = "hand";
}

function cellcolorout(id) {
	var sStyle = ".style";
	var Cell = eval(id + sStyle);

	Cell.backgroundColor = "";
	Cell.cursor = "";
}

function toggle(id) {
	var sStyle = ".style";
	var iTarget = eval(id + sStyle);

	if ( iTarget.visibility == "hidden" ) {
		iTarget.visibility = "visible";
	}
}

function _toggleout(id) {
	var sStyle = ".style";
	var iTarget = eval(id + sStyle);

	if ( iTarget.visibility == "visible" ) {
		iTarget.visibility = "hidden";
	}
}

function toggleout(id) {
	if( id == "ArcCell" ) {
		_toggleout("LabMenu");
		_toggleout("LinkMenu");
	} else if( id == "LabCell" ) {
		_toggleout("ArchiveMenu");
		_toggleout("LinkMenu");
	} else if( id == "LinkCell" ) {
		_toggleout("ArchiveMenu");
		_toggleout("LabMenu");
	} else {
		_toggleout("ArchiveMenu");
		_toggleout("LabMenu");
		_toggleout("LinkMenu");
	}
}

function onmenu(id) {
	toggleout(id);
	cellcolorin(id);
}

function _Return()
{
	window.scrollTo(0,0);
}

function imgwindow(image)
{
	imgWin = window.open(image,"ImgWin","width=680,height=800,scrollbars=yes,status=no,resizable=yes");
}

function Redirect(x)
{
	if (x.options[x.selectedIndex].value != "NoSelect") {
		location.href = x.options[x.selectedIndex].value;
	}
}
// -->