<!-- hide
function passw(){
	var Passed = 0
	var Name = new Array()
	Name[0] = "primaire" 
	Name[1] = "pma" 
	Name[2] = "pmb"
    Name[3] = "mma" 
	Name[4] = "mmb"
	Name[5] = "mmgm" 
	Name[6] = "gma"
	Name[7] = "gmb" 
	Name[8] = "cpa" 
	Name[9] = "cpb" 
	Name[10] = "ce1a" 
	Name[11] = "ce1b" 
	Name[12] = "ce2a" 
	Name[13] = "ce2b" 
	Name[14] = "cm1" 
	Name[15] = "cm2" 
	Name[16] = "cm1cm2" 
	Name[17] = "6e" 
	Name[18] = "5ea" 
	Name[19] = "5eb" 
	Name[20] = "4e" 
	Name[21] = "3e" 
	Name[22] = "loyola"
	Name[23] = "music"
	Name[24] = "vero" 

	var Pas = new Array()
	Pas[0] = "jazz"
	Pas[1] = "lion"	
	Pas[2] = "france"	
	Pas[3] = "final"
	Pas[4] = "site"	
	Pas[5] = "star"	
	Pas[6] = "central"
	Pas[7] = "service"
	Pas[8] = "record"	
	Pas[9] = "crayon"	
	Pas[10] = "source"
	Pas[11] = "corinne"
	Pas[12] = "paris"
	Pas[13] = "base"
	Pas[14] = "table"
	Pas[15] = "audio"	
	Pas[16] = "disco"
	Pas[17] = "image"
	Pas[18] = "dessin"
	Pas[19] = "photo"
	Pas[20] = "patient"
	Pas[21] = "test"
	Pas[22] = "support"
	Pas[23] = "note"
	Pas[24] = "dragon"

	var Usern = document.pass.usernam.value
	var Passs = document.pass.passwo.value
	for (var i = 0; i <25; i++)   // the value after i < should be exactly the number of users
		{
		if (Usern == Name[i] && Passs == Pas[i])
			{

				//alert("Password Accepted")  // substitut this with your code
				Passed = 1
    var location=("http://rudolph.anywherehost.net/~admin82/~chicagoprof/" + Name[i]);
    document.location.href=location;
				break
			}
		else
			{
			Passed = 0
			}
		}
	if (Passed == 0)
		{alert("Password Incorrect")}  // substitut this with your code
	}
// end hiding -->
