var loader = 'http://kishpress.com/wp-content/plugins/kish-multi/img/indicator.gif';
var kishpress_ajax_url='http://kishpress.com/wp-content/plugins/kish-ejunkie/kish-ejunkie.php';
function kishpress_reg() {
jQuery("#kp_progress").html('');
if(jQuery("#kppassword").val()!=jQuery("#kppasswordrepeat").val()) {
alert('Passwords does not match');
jQuery("#kp_progress").html('');
return false;
}
else if(jQuery("#kppassword").val()=='') {
alert('Passwords cannot be blank');
jQuery("#kp_progress").html('');
return false;
}
dataToSend='req=regnewuser&email=' + jQuery("#kpemail").val() + '&txnid=' + jQuery("#kptxnid").val() + '&pword=' + jQuery("#kppassword").val() + '&uname=' + jQuery("#kpuname").val();
jQuery.post(kishpress_ajax_url,dataToSend,function(data) {
if(data.substr(0,3)!='
') {
jQuery("#kp_progress").html(data);
}
else {
jQuery("#kishpress_registration").html(data);
jQuery("#kp_progress").html('');
}
},"html");
}
function kishpress_profile() {
jQuery("#kp_progress").html('');
if(jQuery("#kppassword").val()!=jQuery("#kppasswordrepeat").val()) {
alert('Passwords does not match');
jQuery("#kp_progress").html('');
return false;
}
dataToSend='req=editprofile&pword=' + jQuery("#kppassword").val() + '&security=' + jQuery("#kmpsecurity").val() + '&kpfname=' + jQuery("#kpfname").val() + '&kplname=' + jQuery("#kplname").val() + '&kmpuserid=' + jQuery("#kmpuserid").val();
jQuery.post(kishpress_ajax_url,dataToSend,function(data) {
jQuery("#kp_progress").html(data);
},"html");
}
function kishpress_purchase() {
jQuery("#kp_progress").html('
');
dataToSend='req=purchaseinfo&security=' + jQuery("#kmpsecurity").val() ;
jQuery.post(kishpress_ajax_url,dataToSend,function(data) {
jQuery("#kishpurchaseproducts").html(data);
jQuery("#kp_progress").html('');
},"html");
}
function kishpress_subscribe() {
jQuery("#kp_progress").html('
');
dataToSend='req=subscribe&security=' + jQuery("#kmpsecurity").val() + '&email=' + jQuery("#kpemailhidden").val() + '&kpfname=' + jQuery("#kpfname").val() ;
jQuery.post(kishpress_ajax_url,dataToSend,function(data) {
jQuery("#kishpurchaseproducts").html(data);
jQuery("#kp_progress").html('');
},"html");
}