var teamsvolley = new Array(36)
	teamsvolley[0]  = new Array("As Cool As",				"A1","A1","A1","A2","A3","A2")
	teamsvolley[1]  = new Array("Laatste keer",				"A2","A2","A3","A1","A1","A1")
	teamsvolley[2]  = new Array("de Lekkerste Tijgers",			"A3","B1","A6","A3","B1","A5")
	teamsvolley[3]  = new Array("Geblaat tot Laat",				"A4","A3","A4","B1","A6","B1")
	teamsvolley[4]  = new Array("WYSIWYG",					"A5","B2","A5","A4","A4","B2")
	teamsvolley[5]  = new Array("Insomnia",					"A6","A4","B1","A5","A2","A3")
	teamsvolley[6]  = new Array("Ken ik jou niet ergens van?",		"B1","A6","A2","B2","A5","A4")
	teamsvolley[7]  = new Array("Flying Doctors",				"B2","B3","C1","B5","C1","B5")
	teamsvolley[8]  = new Array("Uberflieger",				"B3","C2","B6","C2","B6","C1")
	teamsvolley[9]  = new Array("SMAP!",					"B4","C1","B5","B4","C2","B6")
	teamsvolley[10] = new Array("Los!",					"B5","B4","B3","B3","B3","A6")
	teamsvolley[11] = new Array("Bleumink Vooruit",				"B6","A5","B2","A6","B2","C2")
	teamsvolley[12] = new Array("Net Niet",					"C1","B5","B4","C1","B5","B4")
	teamsvolley[13] = new Array("Lieg",					"C2","D1","C5","C4","C3","C4")
	teamsvolley[14] = new Array("UC Volley II",				"C3","B6","C2","B6","B4","B3")
	teamsvolley[15] = new Array("FF Niet",					"C4","C4","C3","D1","D3","D3")
	teamsvolley[16] = new Array("Ons 2 Honc",				"C5","D2","D4","D5","D5","C6")
	teamsvolley[17] = new Array("Beta Blokkers",				"C6","C3","C4","C3","C4","C3")
	teamsvolley[18] = new Array("Angobv",					"D1","D3","C6","D2","D4","D4")
	teamsvolley[19] = new Array("Zee-samstraat",				"D2","C5","D2","C6","D1","C5")
	teamsvolley[20] = new Array("Als 1 Blok",				"D3","D5","D6","D4","C6","D1")
	teamsvolley[21] = new Array("Betonhappers",				"D4","D4","D3","C5","D2","D6")
	teamsvolley[22] = new Array("Rambo",					"D5","C6","D1","D3","C5","D2")
	teamsvolley[23] = new Array("UC Volley I",				"D6","D6","D5","D6","D6","D5")
	teamsvolley[24] = new Array("TEAM",		"E1","E1","E1","E1","E1","E1")
	teamsvolley[25] = new Array("TEAM",		"E2","E2","E2","E2","E2","E2")
	teamsvolley[26] = new Array("TEAM",		"E3","E3","E3","E3","E3","E3")
	teamsvolley[27] = new Array("TEAM",		"E4","E4","E4","E4","E4","E4")
	teamsvolley[28] = new Array("TEAM",		"E5","E5","E5","E5","E5","E5")
	teamsvolley[29] = new Array("TEAM",		"E6","E6","E6","E6","E6","E6")
	teamsvolley[30] = new Array("TEAM",		"F1","F1","F1","F1","F1","F1")
	teamsvolley[31] = new Array("TEAM",		"F2","F2","F2","F2","F2","F2")
	teamsvolley[32] = new Array("TEAM",		"F3","F3","F3","F3","F3","F3")
	teamsvolley[33] = new Array("TEAM",		"F4","F4","F4","F4","F4","F4")
	teamsvolley[34] = new Array("TEAM",		"F5","F5","F5","F5","F5","F5")
	teamsvolley[35] = new Array("TEAM",		"F6","F6","F6","F6","F6","F6")
	/*teamsvolley[] = new Array()						*/

var h = new Array(	"<tr><td WIDTH=\"20\" BGCOLOR=\"#FFFFAA\">",
					"</td><td WIDTH=\"240\" BGCOLOR=\"#dddddd\">",
					"</td><td WIDTH=\"20\" 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;	
			}
		}
	}
}

