// Preload Images
img1 = new Image(16, 16);  
img1.src="images/spinner.gif";

img2 = new Image(220, 19);  
img2.src="images/loader-bar.gif";

	window.addEvent('domready', function() {

		if($('login')){
			
			$('login').addEvent('submit', function(e) {
				// Prevents the default submit event from loading a new page.
				e.stop();
		
				// Show the spinning indicator when pressing the submit button...
				$('ajax_loading').setStyle('display','block');
		
				// Hide the submit button while processing...
				$('submit').setStyle('display','none');
		
				// Set the options of the form's Request handler.
				// ("this" refers to the $('login') element).
				this.set('send', { onComplete: function(response) {
					$('ajax_loading').setStyle('display','none');
		
					if(response == 'OK'){
						$('login_response').set('html', '');
						/*$('status').set('html', '<div id="logged_in">You are now logged it! <br />' +
			            '<img align="absmiddle" src="images/loader-bar.gif">' +
			            '<br /> Please wait while we redirect you to your private page...</div>');*/
			              
			            if($('contacto-page')){$('main-login-div').set('html','<div id="logged-user-div" class="titbox"><table border="0" cellpadding="0" cellspacing="0"><tr><td><img src="/games/images/identifiedusericon.png"></td><td class="mini_negro">&nbsp;&nbsp;'+$('user').get('value')+'</td></tr></table></div><div id="main-menu"><ul><li><a href="/games/micuenta.html">Mi Cuenta</a></li><li><a href="/games/juegos_puntuables">Puntuables</a></li><li><a href="/games/includes/logout.php">Desconectar</a></li></ul></div>');}
			            if($('micuenta-page')){window.location.reload();}
			            if($('user-aceptado')){
			              	$('status').set('html', '<div id="logged_in">Ya está logeado! <br />' +
			              		'<img align="absmiddle" src="images/loader-bar.gif">' +
			              		'<br /> Por favor espere mientras redirigimos el navegador a su cuenta personal en redribera...</div>');
			            	setTimeout('go_to_private_page()', 3000);
			            }
			            if($('playgame-page')){window.location.reload();}
			            //if($('indexgame-page')){$('main-login-div').set('html','<div id="logged-user-div" class="titbox"><table border="0" cellpadding="0" cellspacing="0"><tr><td><img src="/games/images/identifiedusericon.png"></td><td class="mini_negro">&nbsp;&nbsp;'+$('user').get('value')+'</td></tr></table></div><div id="main-menu"><ul><li><a href="/games/micuenta.html">Mi Cuenta</a></li><li><a href="/games/juegos_puntuables">Puntuables</a></li><li><a href="/games/includes/logout.php">Desconectar</a></li></ul></div>');}
			            if($('indexgame-page')){window.location.reload();}
			            if($('especial-page')){window.location.reload();}
						//setTimeout('go_to_private_page()', 3000);
					}
					else
					{
					  $('login_response').set('html', response);
					  // Show the login button
					  $('submit').setStyle('display','block');
					}
				}});
		
				// Send the form.
				this.send();
			});
		}
});

function go_to_private_page()
{
window.location = 'micuenta.html'; // Members Area
}
