// JavaScript Document
function randomvideo()
{
		<!-- This will choose a random number between 0 and how many items there are in the array.  It uses 0 instead of 1 as the first item in an array is in position 0 -->
		var randomnumber = Math.floor(Math.random() * FileName.length);
	
	
		document.write("<table cellpadding=\"5\" cellspacing=\"0\" border=\"0\"><tr><td><OBJECT height=\"247\" width=\"300\"><PARAM NAME=\"movie\" VALUE=\"http://www.youtube.com/v/" + FileName[randomnumber] + "\"><embed src=\"http://www.youtube.com/v/" + FileName[randomnumber] + "\" type=\"application/x-shockwave-flash\" width=\"300\" height=\"247\"></embed></OBJECT></td><td valign=\"top\"><P><strong>" + VideoName[randomnumber] + "</strong><br>" + Descriptions[randomnumber] + "</p><p><a href=\"http://www.youtube.com/vcmbc\">More >></a></p></td></tr></table>");

} <!-- Random Image function ends here -->
