	/*=================================================================
	Function: ShowTooltip
	Purpose:  position, draw, and display tooltip element 
	Input:    fArg - indexes text array to display
	Returns:  undefined
	==================================================================*/
	function ShowTooltip(fArg,fwidth,fheight)
	{
		var tooltipOBJ = eval("document.all['tt" + fArg + "']");
		var tooltipOffsetTop = tooltipOBJ.scrollHeight + fheight;
		var testTop = (document.body.scrollTop + event.clientY) - tooltipOffsetTop;
		var testLeft = event.clientX - fwidth;
		var tooltipAbsLft = (testLeft < 0) ? 10 : testLeft;
		var tooltipAbsTop = (testTop < document.body.scrollTop) ? document.body.scrollTop - fheight : testTop;
		tooltipOBJ.style.posLeft = tooltipAbsLft;
		tooltipOBJ.style.posTop = tooltipAbsTop;
		tooltipOBJ.style.visibility = "visible";
	}
	/*=================================================================
	Function: HideTooltip
	Purpose:  set visibility attribute of tooltip to hidden
	Input:    none
	Returns:  undefined
	==================================================================*/
	function HideTooltip(fArg)
	{
		var tooltipOBJ = eval("document.all['tt" + fArg + "']");
		tooltipOBJ.style.visibility = "hidden";
	}


function openWindow(lnk){
 open (lnk,"","height=420,width=370,scrollbars=yes,resizable=no,status=no,menubar=no,toolbar=no,location=no")
	}
function findTag(eItem) {
	var objATag = new Object();
	objATag = eItem.all.tags("A").item(0)
	return objATag;
}
function mo(elem){
	elem.style.cursor="hand";
	}
function renkOver(eItem,renk){
	eItem.DefaultBgColor = eItem.style.backgroundColor;
	eItem.DefaultTxtColor = eItem.style.color;
	eItem.style.backgroundColor = renk;
	eItem.style.cursor="hand";
	}
function renkOut(eItem){
	eItem.style.backgroundColor = eItem.DefaultBgColor;
}
function renkUp(eItem){
	top.location.href= findTag(eItem).getAttribute("HREF");
}
function shContent(eItem){
	var oContent = document.all.item(eItem);
	bOn = (oContent.style.display.toLowerCase() == "none");
	if (bOn == false)
	{
		oContent.style.display = "none";
		sfolders.style.display = ""
	}
	else
	{
		oContent.style.display = "";
		sfolders.style.display = "none";
	}	
}
function shContentN(eItem){
	var oContent = document.all.item(eItem);
	bOn = (oContent.style.display.toLowerCase() == "none");
	if (bOn == false)
	{
		oContent.style.display = "none";
	}
	else
	{
		oContent.style.display = "";
	}	
}
function goster(eItem){
	var oContent = document.all.item(eItem);
	oContent.style.display = "";
}
function gizle(eItem){
	var oContent = document.all.item(eItem);
	oContent.style.display = "none";
}