// JavaScript Document
var flags = false;
var active;
function MOn(mid)
{
	flags = false;
	with(document.all)
	{
		var mindex = eval(mid);
		mindex.style.display='';
	}
}

function MOff(mid)
{
	MKill(mid);
}

function MKill(mid)
{
	with(document.all)
	{
		var mindex = eval(mid);
		mindex.style.display='none';
	}
	return false;
}
function tdOn(tdid)
{	
	with(document.all)
	{
		tdid.style.backgroundColor='#FFF7D9';
	}
}
function tdOff(tdid)
{	
	with(document.all)
	{
		tdid.style.backgroundColor='#FEF9F0';
	}
}
