/*
function trace( msg ){
  if( typeof( jsTrace ) != 'undefined' ){
    jsTrace.send( msg );
  }
}
*/
//

var bool = true;
	
function openPod ( boolVal ) {
	
	if ( boolVal ) {
		bool = boolVal;
	}
	
	var poddiv = document.getElementById( 'user-pod' );
	var podBottom = document.getElementById( 'user-pod-bottom' );
	var topVal = "-62px";
	var bkgVal = "url(images/user_pod_tab_closed_bkg.jpg)";
		
	if ( bool == false ) {
		topVal = "-62px";
		bkgVal = "url(images/user_pod_tab_closed_bkg.jpg)";
		bool = true;
	} else {
		topVal = "0";
		bkgVal = "url(images/user_pod_tab_bkg.jpg)";
		bool = false;
	}
	
	poddiv.style.top = topVal;
	podBottom.style.backgroundImage = bkgVal;

}

//
