//<!-- 
/*
------------------------------------------------------------------------------
File Name:randomImage.js
Company: ph2enterprises
Client: Explorer Pipeline
Author: Phillip J. Henslee II <ph2@ph2.us> ©2003
Purpose: Choose Random Image
Functions: One
Date Created: September 30, 2002
Last Modified: February 10, 2004
Dependent Files: None
----------------------------------------------------------------------------
*/

function writeRandomHomeImage(){
	var x = Math.floor(Math.random()*5);
	if(x==0){x=1};
	//alert(x);
	//var strHtml = "<img src='http://www.expl.com/images/random/home/leftpic" + x + ".jpg'" + "width=428 height=237 border=0>"
	var strHtml = "<img src='http://www.expl.com/Portals/0/images/random/home/leftpic" + x + ".jpg'" + "width=428 height=237 border=0>"
	document.write(strHtml);
}
writeRandomHomeImage();

-->
