function showContent(the_url,wheretoshow)
{ 
showme=wheretoshow;
$('#'+showme).html($('#text_loading').html());
$.ajax({
url: the_url,
success: function(response) {
// update status element
$('#text_loading').hide();
$('#'+showme).html(response);

},

timeout: 9000

});

}


