<!--
// arrays that keep all needed cards
imgarray = new Array("01.jpg", "02.jpg","03.jpg","04.jpg","05.jpg","06.jpg","07.jpg","08.jpg","09.jpg","10.jpg","11.jpg","12.jpg");
//imgarray = new Array("germany.png","france.png","italy.png","spain.png","russia.png","usa.png","sweden.png","turkey.png");
//imageDir = "../img/flags/medium/";
imageDir = "../img/pics/";
len=imgarray.length-1;

ranNumb1= Math.round(Math.random()*len);
ranNumb2= Math.round(Math.random()*len);
while (ranNumb1 == ranNumb2)
{
	ranNumb2 = Math.round(Math.random()*len)
}
ranNumb3= Math.round(Math.random()*len);
while ((ranNumb3 == ranNumb1) || (ranNumb3 == ranNumb2))
{
	ranNumb3 = Math.round(Math.random()*len)
}
document.write("<a href=\"../html/pictures.php\" target=\"home\">");
document.write("<img class=\"flag1\" border=\"0\" src=\"" + imageDir + imgarray[ranNumb1] + "\" width=\"97\" height=\"72\" id=\"A\"/ onmouseover=\"toTop('A')\">");
document.write("</a>");

document.write("<a href=\"../html/pictures.php\" target=\"home\">");
document.write("<img class=\"flag2\" border=\"0\" src=\"" + imageDir + imgarray[ranNumb2] + "\" width=\"97\" height=\"72\" id=\"B\"/ onmouseover=\"toTop('B')\">");
document.write("</a>");

document.write("<a href=\"../html/pictures.php\" target=\"home\">");
document.write("<img class=\"flag3\" border=\"0\"  src=\"" + imageDir + imgarray[ranNumb3] + "\" width=\"97\" height=\"72\" id=\"C\"/ onmouseover=\"toTop('C')\">");
document.write("</a>");


-->