<!-- HIDE FROM OTHER BROWSERS// ################################################################################// # © Copyright 2000 Autolycus Corp.  All Rights Reserved  Patents Pending       #// # JavaScript Object VR Rollover Method              Version 1.4                #// # info@autolycus.com                                Created 11/3/1999          #// # http://www.autolycus.com                          Last Modified 7/24/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 untitled_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloadedvar untitled_shot_number = "1";                     // First image in the animationvar untitled_total_frames = "16";                   // Total number of images in animationvar untitled_spinning = "YES";                      // Whether or not the image is to spin when the page loadsvar untitled_spin_direction = "RIGHT";              // What direction the image is to spin when the page loadsvar untitled_spin_speed = "200";                    // The speed at which the animation is to run. Lower numbers equal faster playbackvar untitled_spin_object = "untitled_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 untitled_Preload_Images() {	if (document.images) {		untitled_frame1 = new Image;		untitled_frame1.src = "untitled_frame01.jpg";		untitled_frame2 = new Image;		untitled_frame2.src = "untitled_frame02.jpg";		untitled_frame3 = new Image;		untitled_frame3.src = "untitled_frame03.jpg";		untitled_frame4 = new Image;		untitled_frame4.src = "untitled_frame04.jpg";		untitled_frame5 = new Image;		untitled_frame5.src = "untitled_frame05.jpg";		untitled_frame6 = new Image;		untitled_frame6.src = "untitled_frame06.jpg";		untitled_frame7 = new Image;		untitled_frame7.src = "untitled_frame07.jpg";		untitled_frame8 = new Image;		untitled_frame8.src = "untitled_frame08.jpg";		untitled_frame9 = new Image;		untitled_frame9.src = "untitled_frame09.jpg";		untitled_frame10 = new Image;		untitled_frame10.src = "untitled_frame10.jpg";		untitled_frame11 = new Image;		untitled_frame11.src = "untitled_frame11.jpg";		untitled_frame12 = new Image;		untitled_frame12.src = "untitled_frame12.jpg";		untitled_frame13 = new Image;		untitled_frame13.src = "untitled_frame13.jpg";		untitled_frame14 = new Image;		untitled_frame14.src = "untitled_frame14.jpg";		untitled_frame15 = new Image;		untitled_frame15.src = "untitled_frame15.jpg";		untitled_frame16 = new Image;		untitled_frame16.src = "untitled_frame16.jpg";		untitled_preloadFlag = true;	}}// Function that handles the rollovers when you mouse over a buttonfunction untitled_Rollover(untitled_imgDocID,untitled_imgNumber) {	untitled_shot_number = untitled_imgNumber;	untitled_spinning = "NO";	document.images[untitled_imgDocID].src = eval("untitled_frame" + untitled_shot_number + ".src");}// Function that handles the Auto-Spinfunction untitled_Auto_Spin(untitled_imgDocID,untitled_imgObjName) {	if (untitled_spinning == "YES") {		if (untitled_spin_direction == "RIGHT") {			document.images[untitled_imgDocID].src = eval(untitled_imgObjName + untitled_shot_number + ".src");			if (untitled_shot_number == untitled_total_frames) {				untitled_shot_number = "1";			} else {				untitled_shot_number = eval(untitled_shot_number + " + 1");			}			setTimeout("untitled_Auto_Spin(untitled_spin_object,'untitled_frame');",untitled_spin_speed);		} else {			document.images[untitled_imgDocID].src = eval(untitled_imgObjName + untitled_shot_number + ".src");			if (untitled_shot_number == "1") {				untitled_shot_number = untitled_total_frames;			} else {				untitled_shot_number = eval(untitled_shot_number + " - 1");			}			setTimeout("untitled_Auto_Spin(untitled_spin_object,'untitled_frame');",untitled_spin_speed);		}	}}document.write('');document.write('<MAP NAME="untitled_VR">');document.write('<AREA SHAPE="rect" COORDS="0,0,37,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="38,0,75,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="76,0,113,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="114,0,151,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="152,0,189,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="190,0,227,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="228,0,265,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="266,0,303,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="304,0,341,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="342,0,379,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="380,0,417,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="418,0,455,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="456,0,493,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="494,0,531,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="532,0,569,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="570,0,607,462" HREF="#" ONMOUSEOVER="untitled_Rollover(\'untitled_STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="untitled_STech.blur(); return true;">');document.write('</MAP>');// STOP HIDING FROM OTHER BROWSERS -->