﻿	function getTip() {
		
		jQuery.ajax({
                type:"POST",
                url: "/toTipAjax.do",
                success: function(msg) {
			
			jQuery('#ts2').text(decodeURI(msg));
                }
            });
            
           jQuery.ajax({
                type:"POST",
                url: "/toFindTipAjax.do",
                success: function(msg) {
            	
            	jQuery('#ts1').text(decodeURI(msg));
                }
            });
            
	}
	
