function show_content(document){


	 $.ajax({
  url: document,
  async:false,
  dataType:'script',
  cache:'false',
  success: function(html){
    

  },
  error: function(html){
    alert('error');
  },
  complete: function(html){
    alert(html.text);
  }
});


}
