// 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 > .99)
		{document.write("<a href='/products/software/macosx/bruclone/index.html' title='bruCLONE - The Disk Cloning &amp; Disaster Recovery Utility for Mac OS X'><img src='http://images.tolisgroup.com/rotate_images/bruclone.gif' height=130 width=130 border=0 alt='bruCLONE - The Disk Cloning/Disaster Recovery Utility'></a>"); return; }
	if (x > .88)
		{document.write("<a href='/products/hardware/bruapp/index.html' title='The bruAPP Backup Appliance'><img src='http://images.tolisgroup.com/rotate_images/bruapp.gif' height=130 width=130 border=0  alt='The TOLIS Group Backup Appliance'></a>"); return; }
	if (x > .77)
		{document.write("<a href='/products/software/bruserver/index.html' title='BRU Server's hardware investment protection'><img src='http://images.tolisgroup.com/rotate_images/hardware_protection.gif' height=130 width=130 border=0 alt='BRU Server has Hardware Investment Protection'></a>"); return; }
	if (x > .66)
		{document.write("<a href='/products/software/bruserver/index.html' title='BRU Server's hardware investment protection'><img src='http://images.tolisgroup.com/rotate_images/investment_protection.gif' height=130 width=130 border=0 alt='BRU Server has Investment Protection'></a>"); return; }
	if (x > .55)
		{document.write("<a href='/products/hardware/bruapp/index.html' title='The bruAPP Backup Appliance'><img src='http://images.tolisgroup.com/rotate_images/bruapp.gif' height=130 width=130 border=0  alt='The TOLIS Group Backup Appliance'></a>"); return; }
	if (x > .44)
		{document.write("<a href='/products/software/bruserver/index.html' title='Get Insider Information on New Hardware!'><img src='http://images.tolisgroup.com/rotate_images/new_hardware.gif' height=130 width=130 border=0 alt='Need New Hardware? Talk to us first!'></a>"); return; }
	if (x > .33)
		{document.write("<a href='/products/software/bruserver/index.html' title='Make a Dedicated Backup Server!'><img src='http://images.tolisgroup.com/rotate_images/old_hardware.gif' height=130 width=130 border=0 alt='Make A Dedicated Backup Server!'></a>"); return; }
	if (x > .22)
		{document.write("<a href='/products/software/bruserver/index.html' title='Try BRU Server FREE for 30-days!'><img src='http://images.tolisgroup.com/rotate_images/bruserver.gif' height=130 width=130 border=0 alt='BRU Server - FREE 30 day trial!'></a>"); return; }
	//if (x > .11)
	else {document.write("<a href='/products/hardware/bruapp/index.html' title='The bruAPP Backup Appliance'><img src='http://images.tolisgroup.com/rotate_images/bruapp.gif' height=130 width=130 border=0  alt='The TOLIS Group Backup Appliance'></a>"); return; }
}
RandomGraphics();
//End Script
