function ShowTerms()
{
	$.ajax( { type: "GET", url: '/View/terms.php'
			, success: function(data) 
			{ 
				$('#ToolTip .tooltip-content').html(data);
				$('#ToolTip').show('slow');  
			} 
	});
	
	
	return false;
}
