$(document).ready(function() { $('#auth').css('left',(screen.width/2 - $('#auth').width()/2)); $('#auth').css('top',(screen.height/2 - $('#auth').height()/2 - 50)); }); function openForgot(new_window) { document.getElementById('loading_title').innerHTML = ''; document.getElementById('main_loading').style.display='inline'; var entry_email = ''; if ((new_window == 'false') && (document.getElementById('entry_email'))) { entry_email = document.getElementById('entry_email').value; }; var entry_login = ''; if ((new_window == 'false') && (document.getElementById('entry_login'))) { entry_login = document.getElementById('entry_login').value; }; var entry_name = ''; if ((new_window == 'false') && (document.getElementById('entry_name'))) { entry_name = document.getElementById('entry_name').value; }; JsHttpRequest.query( 'includes/backend/index.back.php?rand='+Math.random(), { 'action' : 'openForgot', 'entry_email' : entry_email, 'entry_login' : entry_login, 'entry_name' : entry_name }, function (result,errors) { document.getElementById('main_loading').style.display='none'; document.getElementById('loading_title').innerHTML = ''; document.getElementById('header-showMessage').innerHTML = result['wmodal_title']; $('#jm-windowsmodal-showMessage').css('width',420); $('#jm-windowsmodal-showMessage').css('height', 60 + (20 * result['wmodal_count_lines'])); document.getElementById('error_content').innerHTML = result['wmodal_text']; $('#jm-windowsmodal-showMessage').css('left',(screen.width/2 - $('#jm-windowsmodal-showMessage').width()/2)); $('#jm-windowsmodal-showMessage').css('top',(screen.height/2 - $('#jm-windowsmodal-showMessage').height()/2 - 50)); $("#jm-windowsmodal-showMessage").fadeIn("slow"); }, false ); }; function sendForgot(confirm_window) { document.getElementById('loading_title').innerHTML = ''; document.getElementById('main_loading').style.display='inline'; JsHttpRequest.query( 'includes/backend/index.back.php?rand='+Math.random(), { 'action' : 'sendForgot', 'entry_email' : document.getElementById('entry_email').value, 'entry_login' : document.getElementById('entry_login').value, 'entry_name' : document.getElementById('entry_name').value, 'confirm_window' : confirm_window }, function (result,errors) { document.getElementById('main_loading').style.display='none'; document.getElementById('loading_title').innerHTML = ''; document.getElementById('header-showMessage').innerHTML = result['wmodal_title']; $('#jm-windowsmodal-showMessage').css('width',420); $('#jm-windowsmodal-showMessage').css('height', 60 + (20 * result['wmodal_count_lines'])); document.getElementById('error_content').innerHTML = result['wmodal_text']; $('#jm-windowsmodal-showMessage').css('left',(screen.width/2 - $('#jm-windowsmodal-showMessage').width()/2)); $('#jm-windowsmodal-showMessage').css('top',(screen.height/2 - $('#jm-windowsmodal-showMessage').height()/2 - 50)); $("#jm-windowsmodal-showMessage").fadeIn("slow"); }, false ); }; function auth() { document.getElementById('loading_title').innerHTML = ''; document.getElementById('main_loading').style.display='inline'; JsHttpRequest.query( 'includes/backend/index.back.php?rand='+Math.random(), { 'action' : 'login', 'lname' : document.getElementById('lname').value, 'pval' : document.getElementById('pval').value }, function (result,errors) { document.getElementById('main_loading').style.display='none'; document.getElementById('loading_title').innerHTML = ''; document.getElementById('header-showMessage').innerHTML = result['wmodal_title']; $('#jm-windowsmodal-showMessage').css('width',520); $('#jm-windowsmodal-showMessage').css('height', 60 + (20 * result['wmodal_count_lines'])); document.getElementById('error_content').innerHTML = result['wmodal_text']; $('#jm-windowsmodal-showMessage').css('left',(screen.width/2 - $('#jm-windowsmodal-showMessage').width()/2)); $('#jm-windowsmodal-showMessage').css('top',(screen.height/2 - $('#jm-windowsmodal-showMessage').height()/2 - 50)); $("#jm-windowsmodal-showMessage").fadeIn("slow"); if (result['pr_error'] == 0) { setTimeout('location.replace("' + result['redirect_url'] + '")', 3000); } }, false ); }; function wmodalClose() { $("#jm-windowsmodal-showMessage").fadeOut("slow"); }