<!-- HIDE FROM OTHER BROWSERS
//##############################################################################
// # © Copyright 2000 Autolycus Corp. All Rights Reserved  Patents Pending     #
// # JavaScript Object VR                              Version 1.3             #
// # info@autolycus.com                                Created 11/3/1999       #
// # http://www.autolycus.com                          Last Modified 4/2/2001  #
// #                                                                           #
// # This code is protected by US and international law including copyright.   #
// # Any illegal copying, modificaton or theft is prohibited and is punishable #
// # by law. For further information, please contact Autolycus Corporation at  #
// # info@autolycus.com or 717.761.9080.                                       #
//##############################################################################

// Declare variables
var preloadFlag = false;          // Variable that is used only to make sure all the images for the animation are preloaded
var shot_number = "1";            // First image in the animation
var total_frames = "24";          // Total number of images in animation
var spinning = "YES";             // Whether or not the image is to spin when the page loads
var spin_direction = "RIGHT";     // What direction the image is to spin when the page loads
var spin_speed = "200";           // The speed at which the animation is to run. Lower numbers equal faster playback
var spin_object = "STech";        // The object or image space that will be used for the animation playback

// Function to preload the VR images and assign them to predefined variables
function Preload_Images() {
	if (document.images) {
		frame1 = new Image;
		frame1.src = "frame01.jpg";
		frame2 = new Image;
		frame2.src = "frame02.jpg";
		frame3 = new Image;
		frame3.src = "frame03.jpg";
		frame4 = new Image;
		frame4.src = "frame04.jpg";
		frame5 = new Image;
		frame5.src = "frame05.jpg";
		frame6 = new Image;
		frame6.src = "frame06.jpg";
		frame7 = new Image;
		frame7.src = "frame07.jpg";
		frame8 = new Image;
		frame8.src = "frame08.jpg";
		frame9 = new Image;
		frame9.src = "frame09.jpg";
		frame10 = new Image;
		frame10.src = "frame10.jpg";
		frame11 = new Image;
		frame11.src = "frame11.jpg";
		frame12 = new Image;
		frame12.src = "frame12.jpg";
		frame13 = new Image;
		frame13.src = "frame13.jpg";
		frame14 = new Image;
		frame14.src = "frame14.jpg";
		frame15 = new Image;
		frame15.src = "frame15.jpg";
		frame16 = new Image;
		frame16.src = "frame16.jpg";
		frame17 = new Image;
		frame17.src = "frame17.jpg";
		frame18 = new Image;
		frame18.src = "frame18.jpg";
		frame19 = new Image;
		frame19.src = "frame19.jpg";
		frame20 = new Image;
		frame20.src = "frame20.jpg";
		frame21 = new Image;
		frame21.src = "frame21.jpg";
		frame22 = new Image;
		frame22.src = "frame22.jpg";
		frame23 = new Image;
		frame23.src = "frame23.jpg";
		frame24 = new Image;
		frame24.src = "frame24.jpg";
		preloadFlag = true;
	}
}

// Function that handles the rollovers when you mouse over a button
function Rollover(imgDocID,imgNumber) {
	shot_number = imgNumber;
	spinning = "NO";
	document.images[imgDocID].src = eval("frame" + shot_number + ".src");
}

// Function that handles the Auto-Spin
function Auto_Spin(imgDocID,imgObjName) {
	if (spinning == "YES") {
		if (spin_direction == "RIGHT") {
			document.images[imgDocID].src = eval(imgObjName + shot_number + ".src");
			if (shot_number == total_frames) {
				shot_number = "1";
			} else {
				shot_number = eval(shot_number + " + 1");
			}
			setTimeout("Auto_Spin(spin_object,'frame');",spin_speed);
		} else {
			document.images[imgDocID].src = eval(imgObjName + shot_number + ".src");
			if (shot_number == "1") {
				shot_number = total_frames;
			} else {
				shot_number = eval(shot_number + " - 1");
			}
			setTimeout("Auto_Spin(spin_object,'frame');",spin_speed);
		}
	}
}

document.write('');
document.write('<MAP NAME="VR">');
document.write('<AREA SHAPE="rect" COORDS="0,0,12,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="13,0,25,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="26,0,38,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="39,0,51,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="52,0,64,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="65,0,77,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="78,0,90,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="91,0,103,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="104,0,116,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="117,0,129,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="130,0,142,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="143,0,155,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="156,0,168,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="169,0,181,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="182,0,194,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="195,0,207,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="208,0,220,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'17\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="221,0,233,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'18\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="234,0,246,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'19\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="247,0,259,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'20\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="260,0,272,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'21\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="273,0,285,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'22\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="286,0,298,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'23\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="299,0,311,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'24\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('</MAP>');

// STOP HIDING FROM OTHER BROWSERS -->
