<!-- hide
function passw(){
	var file_path="main.html" // substitut this with your url

	var Passed = 0

	var Name = new Array()
	Name[0] = "Bat04"
    Name[1] = "Tam04"
	Name[2] = "Ora04"
	Name[3] = "Mord04"
	Name[4] = "Fein04"
	Name[5] = "Nir04"
	Name[6] = "Mod04"
	Name[7] = "Ben04"
	Name[8] = "Tel04"
	Name[9] = "Rogo04"
	Name[10] = "Tami04"
	Name[11] = "Michal04"
	Name[12] = "Marc04"
	Name[13] = "Vis04"
	//Name[14] = "RabinBs 03"
	//Name[15] = "Marc03"
	//Name[16] = "BenZvi03"
	

	var Usern = document.pass.usernam.value
	var Passs = document.pass.passwo.value

	if (Usern == "")
			{
				alert("Please enter shevet name")
				Passed = 0
				return false;
			}
	if (Passs == "")
			{
				alert("Pleas enter password")
				Passed = 0
				return false;
			}

	for (var i = 0; i < 14; i++)   // the value after i < should be exactly the number of users
		{
		if (Usern == Name[i])
			{
				alert("Password Accepted")  // substitut this or delete this row
				parent.location=file_path;  
				Passed = 1
				break
			}
		else
			{
			Passed = 0
			}
		}


	if (Passed == 0)
		{alert("Shevet name / Password Incorrect")}  // substitut this with your code
	}

// end hiding -->

