function ToggleDisplay(oButton, oItems)

{



	if ((oItems.style.display == "") || (oItems.style.display == "none"))	{

		oItems.style.display = "block";

		oButton.src = "/images/minus.gif";

	}	else {

		oItems.style.display = "none";

		oButton.src = "/images/plus.gif";

	}

}



function handleMouseover() {

	eSrc = window.event.srcElement;

	eSrcTag=eSrc.tagName.toUpperCase();

	if (eSrcTag=="DIV" && eSrc.className.toUpperCase()=="CLSTOCHEAD")	eSrc.style.textDecoration = "underline";

	if (eSrcTag=="LABEL") eSrc.style.color="#003399";

}



function handleMouseout() {

	eSrc = window.event.srcElement;

	eSrcTag=eSrc.tagName.toUpperCase();

	if (eSrcTag=="DIV" && eSrc.className.toUpperCase()=="CLSTOCHEAD")	eSrc.style.textDecoration = "";

	if (eSrcTag=="LABEL") eSrc.style.color="";

}

function popUp(url) 
{
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width=500,height=450');
self.name = "mainWin"; 
}

function popUpForm(url) 
{
sealWin=window.open(url,"win",'toolbar=0,location=0,directories=0,status=0, menubar=0,scrollbars=1,resizable=1,left=200,top=200,width=515,height=460');
self.name = "mainWin"; 
}



document.onmouseover=handleMouseover;

document.onmouseout=handleMouseout;
