<!--
function roll(name, id) {
	if(img && document.images) document.images[name].src = img[id].src;
}

function showMenu(name, anc) {
	if(cFrame && cFrame.ShowMenu) {
		var ancPos = getPosition(anc);
		cFrame.ShowMenu(name, ancPos.x, ancPos.y+31, false);
	}
}

function hideMenu() {
	if(cFrame && cFrame.tHideAll) {
		cFrame.tHideAll();
	}
}


function getPosition(ancName)
{
	for (var i = 0; i < document.anchors.length; i++)
	{
		if (document.anchors[i].name == ancName)
		{
			this.x = ancPosX(document.anchors[i]);
			this.y = ancPosY(document.anchors[i]);
			return this;
		}
	}
}

function ancPosX(anchorPtr)
{
	if (document.layers)
	{
		return anchorPtr.x;
	} else if (document.getElementById || document.all)
	{
		var pos = anchorPtr.offsetLeft;
		while (anchorPtr.offsetParent != null)
		{
			anchorPtr = anchorPtr.offsetParent;
			pos += anchorPtr.offsetLeft;
		}
		return pos;
	}
}

function ancPosY(anchorPtr)
{
	if (document.layers)
	{
		return anchorPtr.y;
	} else if (document.getElementById || document.all)
	{
		var pos = anchorPtr.offsetTop;
		while (anchorPtr.offsetParent != null)
		{
			anchorPtr = anchorPtr.offsetParent;
			pos += anchorPtr.offsetTop;
		}
		return pos;
	}
}

//-->
