//<!-- 
/*
------------------------------------------------------------------------------
File Name:randomImage.js
Company: ph2enterprises
Client: Baker Financial Services
Author: Phillip J. Henslee II <ph2@ph2.us> ©2003
Purpose: Choose Random Image
Functions: One
Date Created: September 30, 2002
Last Modified: October 6, 2002
Dependent Files: None
----------------------------------------------------------------------------
*/

function writeRandomImage(){
	var x = Math.floor(Math.random()*9);
	if(x==0){x=1};
	//alert(x);
	var strHtml = "<img src='http://www.bakerfinancial.net/images/RandomVertical/rv" + x + ".jpg'" + "width=202 height=280 border=0>"
	document.write(strHtml);
}
writeRandomImage();
-->
