function combine(p1, p2, p3, p4)
{
	this.p1=p1; this.p2=p2;
	this.p3=p3; this.p4=p4;
}

var kwartet=new Array();

kwartet[0]=new combine('Nas', 'Bugge', 'Philipse', 'Mey');
kwartet[1]=new combine('Philipse','van Genderen','Agtereek','Mijksenaar');
kwartet[2]=new combine('Philipse','Bugge','Nas','van Genderen');
kwartet[3]=new combine('Mey','Mijksenaar','Agtereek','Philipse');
kwartet[4]=new combine('Agtereek','Mey','van Genderen','Mijksenaar');
kwartet[5]=new combine('Philipse','Mey','Mijksenaar','Nas');