// JavaScript Document
//	Random photos
//	Check CRT photos.js for random photos with captions

var Photo = new Array();
/*Photo[0]= "<img src='images/Imported Photos 00333.jpg' width=170 alt='' border='1'>";
Photo[1]= "<img src='images/Imported Photos 00327.jpg' width=170 alt='' border='1'>";
Photo[2]= "<img src='images/Bplay08.jpg' width=170 alt='' border='1'>";
Photo[3]= "<img src='images/354732354307_0_BG.jpg' width=170 alt='' border='1'>";
Photo[4]= "<img src='images/Bplay19.jpg' width=170 alt='' border='1'>";
Photo[5]= "<img src='images/Bplay32.jpg' width=170 alt='' border='1'>";
Photo[6]= "<img src='images/133.jpg' width=170 alt='' border='1'>";
Photo[7]= "<img src='images/BU19-Framingham.jpg' width=170 alt='' border='1'>";
Photo[8]= "<img src='images/GU12-2-Framingham.jpg' width=170 alt='' border='1'>";
Photo[9]= "<img src='images/049.jpg' width=170 alt='' border='1'>";
Photo[10]= "<img src='images/050.jpg' width=170 alt='' border='1'>";
Photo[11]= "<img src='images/055.jpg' width=170 alt='' border='1'>";*/



Photo[0]= "<img src='images/Imported Photos 00333-sm.gif' width=170 alt='' border='1'>";
Photo[1]= "<img src='images/Imported Photos 00327-sm.gif' width=170 alt='' border='1'>";
Photo[2]= "<img src='images/Bplay08-sm.gif' width=170 alt='' border='1'>";
Photo[3]= "<img src='images/354732354307_0_BG-sm.gif' width=170 alt='' border='1'>";
Photo[4]= "<img src='images/Bplay19-sm.gif' width=170 alt='' border='1'>";
Photo[5]= "<img src='images/Bplay32-sm.gif' width=170 alt='' border='1'>";
Photo[6]= "<img src='images/133-sm.gif' width=170 alt='' border='1'>";
Photo[7]= "<img src='images/BU19-Framingham.jpg' width=170 alt='' border='1'>";
Photo[8]= "<img src='images/GU12-2-Framingham-sm.gif' width=170 alt='' border='1'>";
Photo[9]= "<img src='images/049-sm.gif' width=170 alt='' border='1'>";
Photo[10]= "<img src='images/050-sm.gif' width=170 alt='' border='1'>";
Photo[11]= "<img src='images/055-sm.gif' width=170 alt='' border='1'>";




function display()	{
	var random1=Math.floor(Math.random()*Photo.length);
/*	var random2=Math.floor(Math.random()*Photo.length);
	while (random1==random2)
		random2=Math.floor(Math.random()*Photo.length);
	document.write("<table width='175' style='border:1'><tr><td align='center'>" + Photo[random1] + "</td></tr><tr><td>&nbsp;</td></tr><tr><td align='center'>" + Photo[random2] + "</td></tr></table>");  */
	document.write("<table width='175' style='border:1px; padding:0px;'><tr><td>" + Photo[random1] + "</td></tr></table>");
}

