﻿/*

Digitex Technologies, Inc. - JavaScript Changer Application.
Vrsion 1.0 Release Candidate 1: Tuesday August 25 1998
Copyright 1998-2004 (c) Digitex Technologies, Inc. All Rights Reserved.
This is a commercial application, please visit http://www.digitex.biz/js-changer/ for more information about its use.
This program is free for non-commercial use.
All Copyright statements must always remain in place
*******  PLEASE NOTE: THIS IS NOT FREE SOFTWARE, IT MUST BE LICENSED FOR ALL USE  ******* 

License Number: FREE-NC-0F4NC

*/

function randImg() 
{
  var loop_images = new Array('http://www.ismarttrain.com/images/FrontImage/SessionGraphMac.png', 'http://www.ismarttrain.com/images/FrontImage/DistributionGraphMac.png', 'http://www.ismarttrain.com/images/FrontImage/DataGraphMac.png', 'http://www.ismarttrain.com/images/FrontImage/CalendarMac.png' );
  var rand = parseInt(Math.random() * 100);
  var idx = (rand %  loop_images.length);
  return loop_images[idx]
}