// 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='http://www.productionbackup.com/info/hardware/bundles/sas/index.php?link=5#5' 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 > .777) {
		document.write("<a href='http://www.productionbackup.com/info/hardware/bundles/sas/index.php?link=4#4' 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;
	}
	if (x >  .555) {
		document.write("<a href='http://www.productionbackup.com/info/hardware/bundles/sas/index.php?link=2#2' 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;
	}
	else {
		document.write("<a href='http://www.productionbackup.com/info/hardware/bundles/sas/index.php?link=3#3' title='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Edit Bay Doubler Station</H4><img src='http://images.productionbackup.com/bundles/EditBayDoublerStation.png' height='175' width='175' alt='Edit Bay Doubler Station Bundle' border='0'></a>"); 
		return;
	}
}
RandomGraphics();
//End Script
