// JavaScript Document

	// ################################################
	function client_logout(){
	// ################################################
	
		if (confirm("Are you sure you want to logoff?")){ 
			window.location = "/_cmd.php?cmd=CLIENT_LOGOUT";		
		}
	
	}
	
	// ################################################
	function client_remove_address(aid){
	// ################################################
	
		if (confirm("Are you sure you want to remove this address?")){ 
			window.location = "/_cmd.php?cmd=CLIENT_REMOVE_ADDRESS&aid=" + aid;		
		}
	
	}