//ajax link ajilluualgch
function get_content(request_values, display_id){	
		
		var loading = '<p align="center"><img src="images/theme/ajax-loader.gif" border="0" style="border:none"/></p>';
		
		$.ajax({
		beforeSend: function(){
			$(display_id).html(loading);	
		},
		method: 'GET',
		url: 'ajax.phtml',	
		global: false,
		cache: false,
	    dataType: 'html',
		data: request_values,
		error: function(){
        alert('Tanii handsan huudas alga bna! / Page not found!');
    	},
		success: function(html){ 
			$(display_id).html(html);
		}
		});	
}
