// COPYRIGHT 2006 © JR FREELANCE

var showimage 		= "yes"	 		// SHOW THE SMALL IMAGE ON THE HEADER RIGHT SIDE
var bordercolor		= "D3DCE6"		// SCROLLER AND IMAGE BORDER COLOR
var edge_distance		= "5"			// PLACE IMAGE FROM EDGE


   if (showimage == "yes") {

document.write('<br><br><br><br><br><br><br><br><br><TABLE cellpadding="0" cellspacing="0" border="1px" bordercolor="#'+bordercolor+'" style="border-collapse: collapse"><tr><td>')

var twox = "<img src=\"images/";
var thrx = " width=\"150\" height=\"150\" border=\"0\">";
var forx = "";
var img = "";

forx += Math.floor(Math.random()*10);
img = forx;
if (img == "0") {
document.write(twox+ '../flash/image0.jpg"' +thrx);
}
if (img == "1") {
document.write(twox+ '../flash/image1.jpg"' +thrx);
}
if (img == "2") {
document.write(twox+ '../flash/image2.jpg"' +thrx);
}
if (img == "3") {
document.write(twox+ '../flash/image3.jpg"' +thrx);
}
if (img == "4") {
document.write(twox+ '../flash/image4.jpg"' +thrx);
}
if (img == "5") {
document.write(twox+ '../flash/image5.jpg"' +thrx);
}
if (img == "6") {
document.write(twox+ '../flash/image6.jpg"' +thrx);
}
if (img == "7") {
document.write(twox+ '../flash/image7.jpg"' +thrx);
}
if (img == "8") {
document.write(twox+ '../flash/image8.jpg"' +thrx);
}
if (img == "9") {
document.write(twox+ '../flash/image9.jpg"' +thrx);
}
// document.write('</a><br>');
document.write('</td></tr></table>')

}
// else {
// document.write('<img src="images/spacer.gif" width="10" height="10">');
// }
// document.write('</td><td align="right" valign="middle" width="'+edge_distance+'">');
// document.write('<img src="images/spacer.gif" width="'+edge_distance+'" height="10">');
// document.write('</td></tr></table>');
