// 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/usb/index.php?link=2#2' 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; }
	else {
		document.write("<a href='http://www.productionbackup.com/info/hardware/bundles/usb/index.php?link=1#1' 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; }
}
RandomGraphics();
//End Script
