// JScript source code
// Code Library Functions
function ToggleDisplay(oButton, oItems)
{
	if (oItems.style.display == 'none')	{
		oItems.style.display = '';
		oButton.src = "../Web/Imgs/Shared/minus.gif";
	}	else {
		oItems.style.display = 'none';
		oButton.src = "../Web/Imgs/Shared/plus.gif";
	}
	return;
}
function openViewPage(url,w,h,l,t) {
	open(url, "_blank", 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+w+',height='+h+',left='+l+', top='+t+',screenX='+l+',screenY='+t);
	//window.open(url, "_blank", "toolbar=auto,location=no,directories=no,status=no, menubar=no,scrollbars=no,resizable=no,copyhistory=no,left=145,top=60, width="+w+",height="+h);
}