var teamsvolley = new Array(36)
	teamsvolley[0]  = new Array("IJskoud",					"A1","A2","A2","A2","A2","A1")
	teamsvolley[1]  = new Array("Ongewoon",					"A2","A1","A1","A1","A1","A2")
	teamsvolley[2]  = new Array("Ramme Dan",				"A3","A3","A4","A4","B1","A5")
	teamsvolley[3]  = new Array("Mooi.",					"A4","A4","A3","A3","A3","A3")
	teamsvolley[4]  = new Array("Los!",						"A5","B1","A5","B1","A6","B2")
	teamsvolley[5]  = new Array("Überflieger",				"A6","B2","B4","C1","B5","B3")
	teamsvolley[6]  = new Array("Volleywood",				"B1","A5","B1","A5","B2","A6")
	teamsvolley[7]  = new Array("Red Alert",				"B2","B4","C1","B5","C2","B5")
	teamsvolley[8]  = new Array("Shitterend",				"B3","B3","A6","B2","A5","A4")
	teamsvolley[9]  = new Array("Touch Down",				"B4","A6","B2","B4","B4","B4")
	teamsvolley[10] = new Array("A-Team",					"B5","C1","C4","B6","B3","C1")
	teamsvolley[11] = new Array("Premium Quality",			"B6","C2","B5","A6","A4","B1")
	teamsvolley[12] = new Array("Béta-Blokkers III",		"C1","C4","C3","D2","C6","B6")
	teamsvolley[13] = new Array("Meiden met Ballen",		"C2","D1","C6","C4","D1","D3")
	teamsvolley[14] = new Array("The Jeffreys",				"C3","D2","D4","D3","D4","D4")
	teamsvolley[15] = new Array("lieG",						"C4","B6","B3","B3","C1","C4")
	teamsvolley[16] = new Array("Geen Stijl",				"C5","B5","C2","D1","C5","C3")
	teamsvolley[17] = new Array("De Bombasten",				"C6","C3","B6","C2","B6","C2")
	teamsvolley[18] = new Array("University College",		"D1","D4","D3","E1","D6","C6")
	teamsvolley[19] = new Array("Als 1 Blok",				"D2","C5","D2","C6","C4","D1")
	teamsvolley[20] = new Array("F-United",					"D3","C6","D1","E2","D5","E2")
	teamsvolley[21] = new Array("Zee-Samstraat",			"D4","D3","C5","C3","D2","C5")
	teamsvolley[22] = new Array("007",						"D5","E2","D5","C5","C3","D2")
	teamsvolley[23] = new Array("Blocki",					"D6","E1","E3","D6","E2","D5")
	teamsvolley[24] = new Array("b.b.v.v. Block",			"E1","D5","E1","D5","D3","E1")
	teamsvolley[25] = new Array("Net over het net",			"E2","E5","E6","E5","E5","E6")
	teamsvolley[26] = new Array("Goed Mis",					"E3","E6","E5","E6","E6","E5")
	teamsvolley[27] = new Array("De Dieseltjes",			"E4","E3","D6","D4","E1","D6")
	teamsvolley[28] = new Array("Slam!!",					"E5","D6","E2","E4","E4","E3")
	teamsvolley[29] = new Array("Wordt Vervolgd",			"E6","E4","E4","E3","E3","E4")
	teamsvolley[30] = new Array("",						"F1","F1","F1","F5","F5","F5")
	teamsvolley[31] = new Array("",						"F2","F2","F2","F4","F4","F4")
	teamsvolley[32] = new Array("",						"F3","F3","F3","F4","F4","F4")
	teamsvolley[33] = new Array("",						"F4","F4","F4","F4","F4","F4")
	teamsvolley[34] = new Array("",						"F5","F5","F5","F5","F5","F5")
	teamsvolley[35] = new Array("",						"F6","F6","F6","F6","F6","F6")
	/*teamsvolley[] = new Array()						*/


	/* Hieronder kun je instellen 
	- of de tekst in de scoretabel bijv. in het midden moet staan. 
	- de kleuren als achtergrond waar scores staan (niet de titel Poule A)
	- De class verwijst naar de stylesheet				*/
	
var h = new Array(	"<tr><td WIDTH=\"20\" align=\"center\" class=\"ScorePlaats\" BGCOLOR=\"#FFFFAA\">",
					"</td><td WIDTH=\"240\" align=\"left\" class=\"ScoreTeamNaam\" BGCOLOR=\"#dddddd\">",
					"</td><td WIDTH=\"20\" align=\"center\" class=\"ScoreSETS\" BGCOLOR=\"#FFFFAA\"><center>",
					"</center></td></tr>")


var plaats = new Array(2)
	plaats[0] = new Array("A1", "A2", "A3", "A4", "A5", "A6",
						  "B1", "B2", "B3", "B4", "B5", "B6",
						  "C1", "C2", "C3", "C4", "C5", "C6",
						  "D1", "D2", "D3", "D4", "D5", "D6",
						  "E1", "E2", "E3", "E4", "E5", "E6",
						  "F1", "F2", "F3", "F4", "F5", "F6")
	plaats[1] = new Array(36)

var hulp2 = new Array(6)
	hulp2[0] = new Array("A","B","C","D","E","F")
	hulp2[1] = new Array(0,1,2,3,4,5)

function orderPoules2(n) {
	for (p=0; p<36 ;p++ )
	{
		for (m=0; m<36 ; m++ )
		{
			if (teamsvolley[m][n] == plaats[0][p])
			{
				plaats[1][p]=m;	
			}
		}
	}
}

