// GENERATE A RANDOM NUMBER USED TO DECIDE WHICH BANNER TO SHOW
//
	var gallery1=Math.floor(Math.random()*15); 
	var gallery2=Math.floor(Math.random()*15);
	var gallery3=Math.floor(Math.random()*15);

document.write("<table border='0' cellpadding='0' cellspacing='0' width='144'>");
document.write("<tr>");
document.write("<td>&nbsp;</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td class='headmain'>Broadcast Gallery</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>&nbsp;</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>Random selections, click image to zoom.</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>&nbsp;</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>");
document.write("<div align='center'>");
document.write("<table border='0' cellpadding='0' cellspacing='0' width='120'>");
document.write("<tr>");
document.write("<td><div>");
document.write("<a href='images/gallery/" + gallery1 + ".jpg' class='highslide' onclick='return hs.expand(this);'><img src='images/gallery/" + gallery1 + "thumb.jpg' alt='Broadcast Example 1' title='Click to enlarge' width='120' /></a><div class='highslide-caption'>Broadcast Example 1</a></div></div></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>");
document.write("<img border='0' src='images/general/filler.gif' width='20' height='10'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td><div>");
document.write("<a href='images/gallery/" + gallery2 + ".jpg' class='highslide' onclick='return hs.expand(this);'><img src='images/gallery/" + gallery2 + "thumb.jpg' alt='Broadcast Example 2' title='Click to enlarge' width='120' /></a></p><div class='highslide-caption'>Broadcast Example 2</div></div></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>");
document.write("<img border='0' src='images/general/filler.gif' width='20' height='10'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td><div>");
document.write("<a href='images/gallery/" + gallery3 + ".jpg' class='highslide' onclick='return hs.expand(this);'><img src='images/gallery/" + gallery3 + "thumb.jpg' alt='Broadcast Example 3' title='Click to enlarge' width='120' /></a></p><div class='highslide-caption'>Broadcast Example 3</div></div></td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>&nbsp;</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>&nbsp;</td>");
document.write("</tr>");
document.write("<tr>");
document.write("<td>&nbsp;</td>");
document.write("</tr>");
document.write("</table>");
document.write("</div>");
document.write("</td>");
document.write("</tr>");
document.write("</table>");

