// Collapse/ Expand

function ToggleScopeCat(sScope)	{
	var imgPlus = new Image();
	var imgMinus = new Image();	
	var newURL='', userAgent=navigator.userAgent, version=0;
	var oTable;
	var oImg;
	if (userAgent.indexOf('Netscape') != -1) {		
    	oTable =document.getElementById('tbl' + sScope);
		oImg = document.getElementById('img' + sScope);		
	} else if (userAgent.indexOf('MSIE') != -1) {
  		oTable = document.all['tbl' + sScope];
		oImg = document.all['img' + sScope];
  	} else if (userAgent.indexOf('Opera') != -1) {
		oTable =document.getElementById('tbl' + sScope);
		oImg = document.getElementById('img' + sScope);
	} else if (userAgent.indexOf('Mozilla') != -1) {
		oTable =document.getElementById('tbl' + sScope);
		oImg = document.getElementById('img' + sScope);
	} else {
		oTable =document.getElementById('tbl' + sScope);
		oImg = document.getElementById('img' + sScope);
	}
		
	imgPlus.src = '../../images/collapse.gif';
	imgMinus.src = '../../images/expand.gif';
	
	if (oTable && oTable.style.display == '')
	{
		oImg.src = imgPlus.src;
		oTable.style.display = 'none';
	}
	else
	{
		oImg.src = imgMinus.src;
		oTable.style.display = '';
	}
}

// goToURL

function goToURL(URL) {
	location.href=URL;
}

// Open pop-up window

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}