
<!-- Copyright 2002 Bontrager Connection, LLC - http://www.web-source.net/web_development/random_images.htm -->
ImagesRotated = 15;
FirstPart = '<img src="images/front';
LastPart = '.gif" height="418" width="355" alt="">';

function printImage() {
var r = Math.ceil(Math.random() * ImagesRotated);
document.write(FirstPart + r + LastPart);
}
//-->

<!-- Script for text rollovers - http://www.technorealm.co.uk/scripts/mouseovershowtext.html -->
<!--
function toggleDiv(id,flagit) {
if (flagit=="1"){
if (document.layers) document.layers[''+id+''].visibility = "show"
else if (document.all) document.all[''+id+''].style.visibility = "visible"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible"
}
else
if (flagit=="0"){
if (document.layers) document.layers[''+id+''].visibility = "hide"
else if (document.all) document.all[''+id+''].style.visibility = "hidden"
else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden"
}
}
//-->
