// JScript source code
// Code Library Functions
function ToggleDisplay(oButton, oItems)
{
	 B1= document.getElementById(oButton);
    O1= document.getElementById(oItems);
	if (O1.style.display == 'none')
		{
		O1.style.display = '';
		B1.src = "../Web/Imgs/Shared/minus.gif";
	    }	
	else 
	    {
		O1.style.display = 'none';
		B1.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);
}