
	var oLeft;
	var oMain;
	var oMetadata;
	var oTop;
	var oBottom;
	
	var g_ErrorMessage = "";
	
	var g_iTopHeight = 75;
	var g_iBottomHeight = 26;

	var g_iLeftWidthNormal = 277;
	var g_iLeftWidth = g_iLeftWidthNormal;

	var g_iClosedPanelWidth = 8;

	var g_iRightWidth = g_iClosedPanelWidth;
	var g_iRightWidthNormal = 277; // 260
	
	

	// tirei aqui
	
	var iInterval = null;
	function OpenMetadataFrame( bTrueForOpen ) {
		ExpandCollapse( bTrueForOpen, 'Right' );
	   }


	//When the user clicks on the small arrow on the left and right panels
	function ExpandCollapse( Restore, sLeftOrRight ) {
		try { 
			var oMainFrameset = document.getElementById("frameset_CenterPanel");
			if( oMainFrameset ) {
				if( sLeftOrRight == "Left" ) {	
					if( Restore == null ){
						if( g_iLeftWidth == g_iClosedPanelWidth ) {
							Restore = true;
                     }
						else {
							Restore = false;
                     }
					   }

					if( Restore ){
						g_iLeftWidth = g_iLeftWidthNormal;
                  }
					else {//Shrink
						g_iLeftWidth = g_iClosedPanelWidth;
                  }
               }  
				else {	//if( sLeftOrRight == "Right" )
					if( Restore == null ) {
						if( g_iRightWidth == g_iClosedPanelWidth ) {
							Restore = true;
                     }
						else {
							Restore = false;
                     }
                  }

					if( Restore )
						g_iRightWidth = g_iRightWidthNormal;
					else //Shrink
						g_iRightWidth = g_iClosedPanelWidth;
               }
				oMainFrameset.cols = g_iLeftWidth + ",*";
			}
		}
		catch(ex)
		{
			alert(ex.message);
		}
	}
	
	
function SemErro() {
return true;
}
window.onerror = SemErro;
