function randomPhotos()
{
	rNum1 = Math.floor(Math.random()*22)+1
	if(rNum1<10)
		rNum1 = "0" + rNum1
	do
	{
		rNum2 = Math.floor(Math.random()*22)+1
		if(rNum2<10)
			rNum2 = "0" + rNum2
	}while (rNum2==rNum1)
	do
	{
		rNum3 = Math.floor(Math.random()*22)+1
		if(rNum3<10)
			rNum3 = "0" + rNum3
	}while (rNum3==rNum1||rNum3==rNum2)
	document.write('<TABLE WIDTH="213" HEIGHT="65" BORDER="0" CELLPADDING="0" CELLSPACING="0">')
	document.write('<TR><TD><IMG SRC=Assets/StudentBannerPhotos/image'+rNum1+'.jpg ALT="Photo of student and/or HFS staff member" WIDTH="70" HEIGHT="65"><\/TD>')
	document.write('<TD STYLE="border-right: 1px solid #B1946C; border-left: 1px solid #B1946C;"><IMG SRC=Assets/StudentBannerPhotos/image'+rNum2+'.jpg ALT="Photo of student and/or HFS staff member" WIDTH="71" HEIGHT="65"><\/TD>')
	document.write('<TD><IMG SRC=Assets/StudentBannerPhotos/image'+rNum3+'.jpg ALT="Photo of student and/or HFS staff member" WIDTH="70" HEIGHT="65"><\/TD><\/TR><\/TABLE>')
	document.close()
}