$(document).ready(function(){$(function(){$("#resend_activation_link").click(function(){$("#dialog").dialog("open");return false})});$.ajaxSetup({cache:false});$("#send_resend_data").click(function(b){$("#send_resend_data").attr("disabled","disabled");var c=$("#r_username").val();var a=$("#r_email").val();$("#restore_status").html('<img src="./images/ajax-loader.gif" />');$.post("./include/php/resend_activation_link.php",{r_username:c,r_email:a},function(f){var e=f.substr(0,1);var d=f.substr(1);if(e==1){$("#send_resend_data").removeAttr("disabled")}else{$("#r_username").val("")}$("#restore_status").empty();$("#restore_status").html(d)})})});
