<!--  
// made by: Nicolas - http://www.javascript-page.com 
 var x = 0 ; var speed = 100; var speed2 = 2000 
function initArray(n) 
		{ this.length = n; 
 		   for (var i =1; i <= n; i++) { this[i] = ' ' } 
		} 
typ = new initArray(11)
typ[0]="Locke's  error? He preferred... "
typ[1]="Newton's brain to Leonard's "
typ[2]="Vinci genuine reincarnation of the True Greeks... "
typ[3]=" Culinary Computing  is NULL?"
typ[4]="A blessing to show this correct analysis... "
typ[5]="that could save enterprises... "
typ[6]="Program for a true philosopher?"
typ[7]="0-25; learning, 25-50: experiences,"
typ[8]="(50-75: thinking, 75-... transmitting.)"
typ[9]="inspired by Carrel's 'Man this Unknown'"
typ[10]=" Appointed as a Minister for Education, "
typ[11]="I would apply the Golden Rule of a PhiloManager, "
typ[12]="The Key of the Problem is no more in the place of the Problem, "
typ[14]=" Primary teachers  would have already found it!"
typ[15]="P3O? Possible thought By  Computer... "
typ[16]="the answer to Turing’s puzzle... "
typ[17]="A philosopher does what won't be done, if he does not do it... "
typ[18] = " Regarding the enterprise as a mine of  problems to be solved, "
typ[19]="(the paper of a philosopher!) I chose my Philosophers "
typ[20]="on their real or possible contribution to  enterprises... "
typ[21]="Ergo, I deserve and demand the title of PhiloMgr... "
typ[22]="Two symbols for IIIrd Millennium philosophy?"
typ[23]="Leonard and Mona Lisa... "
typ[24]="My part is to prove it!"
typ[25]="TO CLASSIFY OUR SCIENTIFICS,"
typ[26]="WE INVENTED THE GEMINI METHOD."
typ[27]="PERFECTLY ADAPTED FOR PHILOSOPHERS. BUT"
typ[28]="NO ROOM FOR SORBONIFUCKERS"
var current = first;
function typewrite() 
    {  var m = typ[current] 
	  window.status = m.substring(0, x++) + "_" 
	  if (x == m.length + 1) { x = 0; current++; 
		if (current > last ) { current = first } 
	  setTimeout("typewrite()", speed2) 
     } 
    else { setTimeout("typewrite()", speed) } } 
    typewrite() 
   //--> 