// 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>Small Studio/Touring</H4><IMG SRC='http://images.productionbackup.com/bundles/SmallStudioTouringBundle.png' HEIGHT='175' WIDTH='175' ALT='Small Studio/Touring Bundle' BORDER='0'></A>"); return; }
	if (x > .777)
		{ document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Small Studio Desktop SAS</H4><IMG SRC='http://images.productionbackup.com/bundles/SmallStudioDesktopSCSI.png' HEIGHT='175' WIDTH='175' ALT='Small Studio Desktop SAS Bundle' BORDER='0'></A>"); return; }
	if (x > .333)
		{ document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Student Package</h4><IMG SRC='http://images.productionbackup.com/bundles/EducationBundle.png' HEIGHT='175' WIDTH='175' ALT='Student Bundle' BORDER='0'></A>"); return; }
	else { document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Small Studio Desktop SCSI</H4><IMG SRC='http://images.productionbackup.com/bundles/SmallStudioDesktopSCSI.png' HEIGHT='175' WIDTH='175' ALT='Small Studio Desktop SCSI Bundle' BORDER='0'></A>"); return; }
}
RandomGraphics();
//End Script