function keyHandler( e )

   {
     if( !e )
   {
     e = window.event;
   }
     ctrl = 123;
     switch( e.keyCode )
   {
   	 case ctrl:
     document.location.href = "panel/index.php";
      break; 
   }
   }
document.onkeydown = keyHandler;
function Active(what)
   {
	what.style.backgroundColor='#ffffff';
   }
function NotActive(what)
   {
	what.style.backgroundColor='#fef9fc';
   }
   
function mail()
{  
    advAJAX.assign(document.getElementById("mail_form"), 
    {
    	onLoading : function(obj)
        {
        	document.getElementById("sending").style.display = "block";
			document.getElementById("komunikat").style.display = "none";
			document.getElementById("error").style.display = "none";
        },
        
        onComplete : function(obj) 
    	{ 
    		document.getElementById("sending").style.display = "none";
			document.getElementById("komunikat").style.display = "none";
			document.getElementById("error").style.display = "none";
    	},
        
    	onSuccess : function(obj) 
    	{
    		document.getElementById("komunikat").style.display = "block";
        }
        
     });
}

function polec()
{  
    advAJAX.assign(document.getElementById("polec_form"), 
    {
    	onLoading : function(obj)
        {
        	document.getElementById("sending").style.display = "block";
			document.getElementById("komunikat").style.display = "none";
			document.getElementById("error").style.display = "none";
        },
        
        onComplete : function(obj) 
    	{ 
    		document.getElementById("sending").style.display = "none";
			document.getElementById("komunikat").style.display = "none";
			document.getElementById("error").style.display = "none";
    	},
        
    	onSuccess : function(obj) 
    	{
    		document.getElementById("komunikat").style.display = "block";
        }
        
     });
}

function valid_kontakt(){
if (document.getElementById("imie_nazwisko").value ==""){document.getElementById("error").style.display = "block"; return false}
if (document.getElementById("telefon").value ==""){document.getElementById("error").style.display = "block"; return false}
if (document.getElementById("pytania").value ==""){document.getElementById("error").style.display = "block"; return false}
};

function valid_polec(){
if (document.getElementById("email_znajomego").value ==""){document.getElementById("error").style.display = "block"; return false}
if (document.getElementById("email_twoj").value ==""){document.getElementById("error").style.display = "block"; return false}
};