<!-- 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 = "16";          // 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";
		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,19,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="20,0,39,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="40,0,59,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="60,0,79,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="80,0,99,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="100,0,119,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="120,0,139,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="140,0,159,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="160,0,179,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="180,0,199,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="200,0,219,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="220,0,239,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="240,0,259,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="260,0,279,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="280,0,299,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('<AREA SHAPE="rect" COORDS="300,0,319,240" HREF="#" ONMOUSEOVER="Rollover(\'STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="STech.blur(); return true;">');
document.write('</MAP>');

// STOP HIDING FROM OTHER BROWSERS -->
