<!--
//Echysttas Website
//Programming by Axonn Echysttas.
//
//Tricky JS.
//Created on 2008-09-22. Finished on 2008-09-22.



//MODULE DESCRIPTION
//-------------------------------
//
//For triky thingz ::- D.
//
//-------------------------------



//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ VARIABLES @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

var knocks = 0;

//@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ MAIN @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@



//Allows access in the "hidden" section after a number of knocks.
function Knock()
{
	knocks++;
	if (knocks > 3) document.location = 'Neuronic/Inside.php'; 
}



//-->