﻿function goSearch() {
   $pdata = { action_type: '' };
   
   $.post("mep-ajax.aspx", $pdata, function(data, status) {
    if (status == 'success') {
     $('#spLastUpdated').html(data);
     
    } else {
     $('#spLastUpdated').html('fail');
    }
   });
}

