<!--
//Run during loading of document
if (parseInt(navigator.appVersion) >= 4)
{
if (navigator.appName.indexOf("Microsoft") != -1)
	{
	isIE4 = "TRUE"
	}
}

function _showHideDetails(div)
{
	if (div.style.display == "none")
	{
		div.style.display = "";
	}
	else
	{
		div.style.display = "none";
	}
}

function showHideDetails(div)
{
if (isIE4=="TRUE")
	{
	img = eval("document.all.detailArrow" + div);
	div = eval("document.all.detailDiv" + div);
	

	if (div.style.display == "none")
		{
		//hideAllDetails(0, 0);
		div.style.display = "";
		img.src = "/images/down_arrow.gif";
	} else {
		//hideAllDetails(0, 0);
		div.style.display = "none";
		img.src = "/images/right_arrow.gif";
		}
	}
}

function hideAllDetails(currentDiv, currentImg)
{
if (isIE4=="TRUE")
	{
	for(i=0;i<document.all.length;i++){
		var el = document.all[i];
		if (el.id.indexOf("detailDiv")==0)
			{
			if (el != currentDiv)
				{
				el.style.display = "none";
				}
			}
		if (el.id.indexOf("detailArrow")==0)
			{
			if (el != currentImg)
				{
				if(el.id != "")
					{
					el.src = "/images/right_arrow.gif";
					}
				}
			}
		}
	}
}

function confirmEnable()
{
var ret = confirm("Adding this archived item to your current list is the equivalent of adding a new item. \n All historical information about this item will not be present. \n\n Do you wish to continue?");
if(ret) return true;
else  return false;
}

function renderEmailLink(address, domain) 
{
	try
	{
		document.write ("<a href=\"mai");
		document.write ("lto:" + address)
		document.write ("@" + domain);
		document.write ("\">" + address + "@");
		document.write (domain + "</a>");

	} catch(er) {
	
	}
}
//-->