// JavaScript Document - Random Image Generator
/* Copyright (c) 2006 TOLIS Group, Inc. All rights reserved.
 Use of this script without express written consent of TOLIS Group, Inc.
 is a violation of copyright laws. Contact the TOLIS Group Webmaster at
	bruwebmaster@tolisgroup.com for permission to use this script.
 Any use other than its intended method violates any prior consent by TOLIS Group, Inc.
*/
//Start Script
function RandomNumber()
{ var today = new Date();
	var num = Math.abs(Math.sin(today.getTime()/10000));
	return num;
}
function RandomGraphics() 
{ var x = RandomNumber();
	if (x > .999)
		{ document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Archival Station</H4><IMG SRC='http://images.productionbackup.com/bundles/ArchivalStation.png' HEIGHT='175' WIDTH='175' ALT='Archival Station Bundle' BORDER='0'></A>"); return; }
	if (x > .555)
		{ document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Automation Station</H4><IMG SRC='http://images.productionbackup.com/bundles/AutomationStation.png' HEIGHT='175' WIDTH='175' ALT='Automation Station Bundle' BORDER='0'></A>"); return; }
	else { document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Edit Bay Production Rack</H4><IMG SRC='http://images.productionbackup.com/bundles/EditBayProductionRack.png' HEIGHT='175' WIDTH='175' ALT='Edit Bay Production Rack Bundle' BORDER='0'></A>"); return; }
}
RandomGraphics();
//End Script