<!-- 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 SD90_5_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloadedvar SD90_5_shot_number = "1";                     // First image in the animationvar SD90_5_total_frames = "36";                   // Total number of images in animationvar SD90_5_spinning = "YES";                      // Whether or not the image is to spin when the page loadsvar SD90_5_spin_direction = "RIGHT";              // What direction the image is to spin when the page loadsvar SD90_5_spin_speed = "200";                    // The speed at which the animation is to run. Lower numbers equal faster playbackvar SD90_5_spin_object = "SD90_5_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 SD90_5_Preload_Images() {	if (document.images) {		SD90_5_frame1 = new Image;		SD90_5_frame1.src = "SD90_5_frame01.jpg";		SD90_5_frame2 = new Image;		SD90_5_frame2.src = "SD90_5_frame02.jpg";		SD90_5_frame3 = new Image;		SD90_5_frame3.src = "SD90_5_frame03.jpg";		SD90_5_frame4 = new Image;		SD90_5_frame4.src = "SD90_5_frame04.jpg";		SD90_5_frame5 = new Image;		SD90_5_frame5.src = "SD90_5_frame05.jpg";		SD90_5_frame6 = new Image;		SD90_5_frame6.src = "SD90_5_frame06.jpg";		SD90_5_frame7 = new Image;		SD90_5_frame7.src = "SD90_5_frame07.jpg";		SD90_5_frame8 = new Image;		SD90_5_frame8.src = "SD90_5_frame08.jpg";		SD90_5_frame9 = new Image;		SD90_5_frame9.src = "SD90_5_frame09.jpg";		SD90_5_frame10 = new Image;		SD90_5_frame10.src = "SD90_5_frame10.jpg";		SD90_5_frame11 = new Image;		SD90_5_frame11.src = "SD90_5_frame11.jpg";		SD90_5_frame12 = new Image;		SD90_5_frame12.src = "SD90_5_frame12.jpg";		SD90_5_frame13 = new Image;		SD90_5_frame13.src = "SD90_5_frame13.jpg";		SD90_5_frame14 = new Image;		SD90_5_frame14.src = "SD90_5_frame14.jpg";		SD90_5_frame15 = new Image;		SD90_5_frame15.src = "SD90_5_frame15.jpg";		SD90_5_frame16 = new Image;		SD90_5_frame16.src = "SD90_5_frame16.jpg";		SD90_5_frame17 = new Image;		SD90_5_frame17.src = "SD90_5_frame17.jpg";		SD90_5_frame18 = new Image;		SD90_5_frame18.src = "SD90_5_frame18.jpg";		SD90_5_frame19 = new Image;		SD90_5_frame19.src = "SD90_5_frame19.jpg";		SD90_5_frame20 = new Image;		SD90_5_frame20.src = "SD90_5_frame20.jpg";		SD90_5_frame21 = new Image;		SD90_5_frame21.src = "SD90_5_frame21.jpg";		SD90_5_frame22 = new Image;		SD90_5_frame22.src = "SD90_5_frame22.jpg";		SD90_5_frame23 = new Image;		SD90_5_frame23.src = "SD90_5_frame23.jpg";		SD90_5_frame24 = new Image;		SD90_5_frame24.src = "SD90_5_frame24.jpg";		SD90_5_frame25 = new Image;		SD90_5_frame25.src = "SD90_5_frame25.jpg";		SD90_5_frame26 = new Image;		SD90_5_frame26.src = "SD90_5_frame26.jpg";		SD90_5_frame27 = new Image;		SD90_5_frame27.src = "SD90_5_frame27.jpg";		SD90_5_frame28 = new Image;		SD90_5_frame28.src = "SD90_5_frame28.jpg";		SD90_5_frame29 = new Image;		SD90_5_frame29.src = "SD90_5_frame29.jpg";		SD90_5_frame30 = new Image;		SD90_5_frame30.src = "SD90_5_frame30.jpg";		SD90_5_frame31 = new Image;		SD90_5_frame31.src = "SD90_5_frame31.jpg";		SD90_5_frame32 = new Image;		SD90_5_frame32.src = "SD90_5_frame32.jpg";		SD90_5_frame33 = new Image;		SD90_5_frame33.src = "SD90_5_frame33.jpg";		SD90_5_frame34 = new Image;		SD90_5_frame34.src = "SD90_5_frame34.jpg";		SD90_5_frame35 = new Image;		SD90_5_frame35.src = "SD90_5_frame35.jpg";		SD90_5_frame36 = new Image;		SD90_5_frame36.src = "SD90_5_frame36.jpg";		SD90_5_preloadFlag = true;	}}// Function that handles the rollovers when you mouse over a buttonfunction SD90_5_Rollover(SD90_5_imgDocID,SD90_5_imgNumber) {	SD90_5_shot_number = SD90_5_imgNumber;	SD90_5_spinning = "NO";	document.images[SD90_5_imgDocID].src = eval("SD90_5_frame" + SD90_5_shot_number + ".src");}// Function that handles the Auto-Spinfunction SD90_5_Auto_Spin(SD90_5_imgDocID,SD90_5_imgObjName) {	if (SD90_5_spinning == "YES") {		if (SD90_5_spin_direction == "RIGHT") {			document.images[SD90_5_imgDocID].src = eval(SD90_5_imgObjName + SD90_5_shot_number + ".src");			if (SD90_5_shot_number == SD90_5_total_frames) {				SD90_5_shot_number = "1";			} else {				SD90_5_shot_number = eval(SD90_5_shot_number + " + 1");			}			setTimeout("SD90_5_Auto_Spin(SD90_5_spin_object,'SD90_5_frame');",SD90_5_spin_speed);		} else {			document.images[SD90_5_imgDocID].src = eval(SD90_5_imgObjName + SD90_5_shot_number + ".src");			if (SD90_5_shot_number == "1") {				SD90_5_shot_number = SD90_5_total_frames;			} else {				SD90_5_shot_number = eval(SD90_5_shot_number + " - 1");			}			setTimeout("SD90_5_Auto_Spin(SD90_5_spin_object,'SD90_5_frame');",SD90_5_spin_speed);		}	}}document.write('');document.write('<MAP NAME="SD90_5_VR">');document.write('<AREA SHAPE="rect" COORDS="0,0,7,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="8,0,15,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="16,0,23,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="24,0,31,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="32,0,39,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="40,0,47,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="48,0,55,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="56,0,63,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="64,0,71,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="72,0,79,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="80,0,87,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="88,0,95,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="96,0,103,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="104,0,111,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="112,0,119,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="120,0,127,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="128,0,135,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'17\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="136,0,143,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'18\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="144,0,151,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'19\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="152,0,159,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'20\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="160,0,167,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'21\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="168,0,175,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'22\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="176,0,183,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'23\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="184,0,191,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'24\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="192,0,199,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'25\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="200,0,207,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'26\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="208,0,215,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'27\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="216,0,223,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'28\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="224,0,231,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'29\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="232,0,239,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'30\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="240,0,247,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'31\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="248,0,255,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'32\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="256,0,263,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'33\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="264,0,271,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'34\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="272,0,279,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'35\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="280,0,287,224" HREF="#" ONMOUSEOVER="SD90_5_Rollover(\'SD90_5_STech\',\'36\'); window.status=\'\'; return true;" ONFOCUS="SD90_5_STech.blur(); return true;">');document.write('</MAP>');// STOP HIDING FROM OTHER BROWSERS -->