// JavaScript Document
function ShowTag(Str,Id,Count)
{
	var TheTag = document.getElementById(Str + Id);
	if(TheTag.style.display=="")
	{
		TheTag.style.display="none";
	}
	else
	{
		for(var i=1;i<=Count;i++)
		{
			document.getElementById(Str + i).style.display="none";
		}
		TheTag.style.display="";
	}
}

function ShowDiv(Obj)
{
	var TheObj = document.getElementById(Obj);
	if(TheObj.style.display == 'none')
	{
		TheObj.style.display = 'block';
	}
	else
	{
		TheObj.style.display = 'none';
	}
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
