function ToggleDisplay(oButton, oItems)
{

	if ((oItems.style.display == "") || (oItems.style.display == "none"))	{
		oItems.style.display = "block";
		oButton.src = "/images/p.gif";
	}	else {
		oItems.style.display = "none";
		oButton.src = "/images/p1.gif";
	}
	return false;
}
function SetOn(name,cl)
{
	var obj=document.all(name);
	try
	{
		obj.className=cl;
	}
	catch(ex) {}
}
function SetOff(name,cl)
{
	var obj=document.all(name);
	try
	{
		obj.className=cl;
	}
	catch(ex) {}
}
function ToggleRequestPanel(oItems)
{
   if((oItems.style.display == "") || (oItems.style.display == "none")){
       oItems.style.display= "block";
   }else{
       oItems.style.display = "none";
   }
   return false;
}

function ShowPanel(oItems)
{
   oItems.style.display = "block";
}

function HidePanel(oItems)
{
   oItems.style.display = "none";
}

