
$(function()
{
	$('#formLogin').submit(function()
	{
		return fCheckLogin();
	});
});


//--- Check Login Form
function fCheckLogin()
{
	var blnReturn = true;
	var strFieldFocus = "";
	
	//--- admin_username
	var oLabel = $('#lblAdminUsername');
	
	if ( $('#admin_username').val() == '' )
	{
		oLabel.html('Richiesto.');
		blnReturn = false;
		if ( strFieldFocus == "" ) strFieldFocus = "admin_username";
	}
	else oLabel.html('');
	
	
	//--- admin_username
	var oLabel = $('#lblAdminPassword');
	
	if ( $('#admin_password').val() == '' )
	{
		oLabel.html('Richiesto.');
		blnReturn = false;
		if ( strFieldFocus == "" ) strFieldFocus = "admin_password";
	}
	else oLabel.html('');
	
	
	if ( ! blnReturn ) $('#boxEffect').effect('highlight', {}, 1000);
	if ( strFieldFocus != "" ) $('#'+strFieldFocus).focus();
	
	if ( blnReturn ) fLoadEssentials();
	
	return blnReturn;
}


//--- Load Essentials
function fLoadEssentials()
{
	fPreloadImmagine( 'immagini/preload/loader-square.gif' );
	fPreloadImmagine( 'immagini/splash/splash_gestione.jpg' );
	fPreloadImmagine( 'immagini/splash/splash_w3c.jpg' );
	fPreloadImmagine( 'immagini/splash/splash_browser.jpg' );
	fPreloadImmagine( 'immagini/splash/splash_dynform.jpg' );
	
	setTimeout("",3000);
};

//--- Carica pagina
function redirectPage( pblnLoginFailed, pstrID_Commento, pstrID_Espositore )
{
	if ( ! pblnLoginFailed )
		location.href = "index.php?" + ( pstrID_Commento != "" ? "id_commento=" + pstrID_Commento + "&" : "" ) + ( pstrID_Espositore != "" ? "id_espositore=" + pstrID_Espositore : "" );
		else location.href = "login.php?cmd=failed" + ( pstrID_Commento != "" ? "&id_commento=" + pstrID_Commento + "&" : "" ) + ( pstrID_Espositore != "" ? "id_espositore=" + pstrID_Espositore : "" );
}
