










//''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
function doclinks_displayList(obj)
{
	var strTblName = obj.id.replace("Title","List");
	if (document.all[strTblName].style.display == "inline")
	{
		document.all[strTblName].style.display = "none";
	}
	else
	{
		document.all[strTblName].style.display = "inline";		
	}
}

function doclinks_showHand(obj)
{
	obj.style.cursor = 'hand';
}

function doclinks_newWindow(strUrl)
{
	var nDiff = 100;
	var nWidth = screen.width - nDiff;
	var nHeight = screen.height - nDiff;
	var nTop = nDiff/2;
	var nLeft = nDiff/2;
	window.open(strUrl,'win','width=' + nWidth + ', height=' + nHeight + ', top=' + nTop + ', left=' + nLeft);
}
