
	_lastHidden = '';
	
	function setLast( _div )
	{	_object = document.getElementById(_div);
		_lastHidden = _object;
		//alert(_div+','+_lastHidden+','+_object);
		//return true;
	}
	function showhide( _div )
	{	_object = document.getElementById(_div);
		
		if( _object.style.display == 'block' )
			hide( _div );
		else
			show( _div );
	
	}
	function show( _div )
	{	_object = document.getElementById(_div);
		
		//alert(_div+','+_lastHidden+','+_object);
		
		if( _lastHidden != '' )
			_lastHidden.style.display 	= 'none';
		_object.style.display 	= 'block';
		
		_lastHidden = _object;
	}
	
	function hide( _div )
	{	_object = document.getElementById(_div);
		
		_object.style.display 	= 'none';
	}
	
	function popList()
	{	popwindow=window.open("/maillist.cfm?act=pop", "list", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=300,height=350,top=100,left=450,fullscreen=0");
		popwindow.focus();
	}
	
	function popFriend(_id,_name)
	{	popwindow=window.open("mailtoFriend.cfm?act=pop&id="+_id+"&name="+_name, "list", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=0,width=300,height=350,top=100,left=450,fullscreen=0");
		popwindow.focus();
	}