MaxItem = 10
function fnDispThis(active)
{
	for (i=1; i < MaxItem+1; i++)
	{
		if (document.getElementById("title"+i)) {	
			if (i!=active)
				{
				document.all("title"+i).className="linkSection"; 
					if (document.getElementById("sub"+i)) {
						document.all("sub"+i).style.display="NONE";
					}
				
				}
			else
				{
					if( active !=0) {
						document.all("title"+active).className="cellSectionHilite";
						if (document.getElementById("sub"+active)) {
							document.all("sub"+active).style.display="BLOCK";
						}
					}
	
				
				}
		}
	}

}

function itemDisplay(itemdisplay)
{
	document.all("item"+itemdisplay).className="cellSubSectionHilite";
}

function openwindow()
{
	window.open("http://thu:82/en_xanadu.asp#pop","mywindow","menubar=0,resizable=0,width=590,height=590");
}