function get_id_info(id) {
	
	//alert("ok");
	dojo.xhrGet( {
		url : "request.php?id="+id,
		handleAs : "text",
		load : function(response, ioArgs) {
		dojo.byId("info_1").innerHTML = response;
		dijit.byId('dialogMOne').show();
			return response;
		},
		error : function(response, ioArgs) {
			console.error("HTTP status code: ", ioArgs.xhr.status);
			return response;
		}
	})
}

function get_list_info(id) {
	

	dojo.xhrGet( {
		url : id,
		handleAs : "text",
		load : function(response, ioArgs) {
			dojo.byId("serch_result").innerHTML = response;

				
				
				return response;
		},
		error : function(response, ioArgs) {
			console.error("HTTP status code: ", ioArgs.xhr.status);
			return response;
		}
	})
}


function Init_info(id) {
	dojo.xhrGet( {
		url : "php/request_info.php?id="+id,
		handleAs : "text",
		load : function(response, ioArgs) {
			dojo.byId("info_1").innerHTML = response;
			dijit.byId('dialogMOne').show();
			return response;
		},
		error : function(response, ioArgs) {
			console.error("HTTP status code: ", ioArgs.xhr.status);
			return response;
		}
	})
	}


