function lnk(ref, mde)
{
	if(mde)
		ref.className = "rd";
	else
		ref.className = "bk";
}

function lnkgo()
{
	var oWindow = window.open("printInformation.html", "newWin", "width=350, height=200, toolbars=no, resizable=no, status=no")
	oWindow.focus();
}

function hvr(id, md)
{
	var itm = document.getElementById(id);
	if(md)
		itm.className = "numrd";
	else
		itm.className = "numblk";
}

function doShow(ref)
{
	var obj = document.getElementById(ref);
	if(!obj)
		return false;
	var pgName = obj.innerHTML.toUpperCase();
	location.href = pgName + ".html";
}

