var theImages = new Array()
theImages[0] = 'ads/mrm3.jpg'
theImages[1] = 'ads/ironmountain2.gif'
theImages[2] = 'ads/ASI_LG_web_ad.jpg'
theImages[3] = 'ads/whh.gif'
var theLink = new Array()
theLink[0] = 'http://www.mrmservicesonline.com'
theLink[1] = 'http://www.ironmountain.com'
theLink[2] = 'http://www.archivessecurity.com'
theLink[3] = 'http://www.businessorganizationsolutions.com'
var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
preBuffer[i] = new Image()
preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
if (whichImage < 1) {
document.write('');
}
else {
document.write('
');
}
}