<!-- 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 RLK150_3_preloadFlag = false;                   // Variable that is used only to make sure all the images for the animation are preloadedvar RLK150_3_shot_number = "1";                     // First image in the animationvar RLK150_3_total_frames = "36";                   // Total number of images in animationvar RLK150_3_spinning = "YES";                      // Whether or not the image is to spin when the page loadsvar RLK150_3_spin_direction = "RIGHT";              // What direction the image is to spin when the page loadsvar RLK150_3_spin_speed = "200";                    // The speed at which the animation is to run. Lower numbers equal faster playbackvar RLK150_3_spin_object = "RLK150_3_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 RLK150_3_Preload_Images() {	if (document.images) {		RLK150_3_frame1 = new Image;		RLK150_3_frame1.src = "RLK150_3_frame01.jpg";		RLK150_3_frame2 = new Image;		RLK150_3_frame2.src = "RLK150_3_frame02.jpg";		RLK150_3_frame3 = new Image;		RLK150_3_frame3.src = "RLK150_3_frame03.jpg";		RLK150_3_frame4 = new Image;		RLK150_3_frame4.src = "RLK150_3_frame04.jpg";		RLK150_3_frame5 = new Image;		RLK150_3_frame5.src = "RLK150_3_frame05.jpg";		RLK150_3_frame6 = new Image;		RLK150_3_frame6.src = "RLK150_3_frame06.jpg";		RLK150_3_frame7 = new Image;		RLK150_3_frame7.src = "RLK150_3_frame07.jpg";		RLK150_3_frame8 = new Image;		RLK150_3_frame8.src = "RLK150_3_frame08.jpg";		RLK150_3_frame9 = new Image;		RLK150_3_frame9.src = "RLK150_3_frame09.jpg";		RLK150_3_frame10 = new Image;		RLK150_3_frame10.src = "RLK150_3_frame10.jpg";		RLK150_3_frame11 = new Image;		RLK150_3_frame11.src = "RLK150_3_frame11.jpg";		RLK150_3_frame12 = new Image;		RLK150_3_frame12.src = "RLK150_3_frame12.jpg";		RLK150_3_frame13 = new Image;		RLK150_3_frame13.src = "RLK150_3_frame13.jpg";		RLK150_3_frame14 = new Image;		RLK150_3_frame14.src = "RLK150_3_frame14.jpg";		RLK150_3_frame15 = new Image;		RLK150_3_frame15.src = "RLK150_3_frame15.jpg";		RLK150_3_frame16 = new Image;		RLK150_3_frame16.src = "RLK150_3_frame16.jpg";		RLK150_3_frame17 = new Image;		RLK150_3_frame17.src = "RLK150_3_frame17.jpg";		RLK150_3_frame18 = new Image;		RLK150_3_frame18.src = "RLK150_3_frame18.jpg";		RLK150_3_frame19 = new Image;		RLK150_3_frame19.src = "RLK150_3_frame19.jpg";		RLK150_3_frame20 = new Image;		RLK150_3_frame20.src = "RLK150_3_frame20.jpg";		RLK150_3_frame21 = new Image;		RLK150_3_frame21.src = "RLK150_3_frame21.jpg";		RLK150_3_frame22 = new Image;		RLK150_3_frame22.src = "RLK150_3_frame22.jpg";		RLK150_3_frame23 = new Image;		RLK150_3_frame23.src = "RLK150_3_frame23.jpg";		RLK150_3_frame24 = new Image;		RLK150_3_frame24.src = "RLK150_3_frame24.jpg";		RLK150_3_frame25 = new Image;		RLK150_3_frame25.src = "RLK150_3_frame25.jpg";		RLK150_3_frame26 = new Image;		RLK150_3_frame26.src = "RLK150_3_frame26.jpg";		RLK150_3_frame27 = new Image;		RLK150_3_frame27.src = "RLK150_3_frame27.jpg";		RLK150_3_frame28 = new Image;		RLK150_3_frame28.src = "RLK150_3_frame28.jpg";		RLK150_3_frame29 = new Image;		RLK150_3_frame29.src = "RLK150_3_frame29.jpg";		RLK150_3_frame30 = new Image;		RLK150_3_frame30.src = "RLK150_3_frame30.jpg";		RLK150_3_frame31 = new Image;		RLK150_3_frame31.src = "RLK150_3_frame31.jpg";		RLK150_3_frame32 = new Image;		RLK150_3_frame32.src = "RLK150_3_frame32.jpg";		RLK150_3_frame33 = new Image;		RLK150_3_frame33.src = "RLK150_3_frame33.jpg";		RLK150_3_frame34 = new Image;		RLK150_3_frame34.src = "RLK150_3_frame34.jpg";		RLK150_3_frame35 = new Image;		RLK150_3_frame35.src = "RLK150_3_frame35.jpg";		RLK150_3_frame36 = new Image;		RLK150_3_frame36.src = "RLK150_3_frame36.jpg";		RLK150_3_preloadFlag = true;	}}// Function that handles the rollovers when you mouse over a buttonfunction RLK150_3_Rollover(RLK150_3_imgDocID,RLK150_3_imgNumber) {	RLK150_3_shot_number = RLK150_3_imgNumber;	RLK150_3_spinning = "NO";	document.images[RLK150_3_imgDocID].src = eval("RLK150_3_frame" + RLK150_3_shot_number + ".src");}// Function that handles the Auto-Spinfunction RLK150_3_Auto_Spin(RLK150_3_imgDocID,RLK150_3_imgObjName) {	if (RLK150_3_spinning == "YES") {		if (RLK150_3_spin_direction == "RIGHT") {			document.images[RLK150_3_imgDocID].src = eval(RLK150_3_imgObjName + RLK150_3_shot_number + ".src");			if (RLK150_3_shot_number == RLK150_3_total_frames) {				RLK150_3_shot_number = "1";			} else {				RLK150_3_shot_number = eval(RLK150_3_shot_number + " + 1");			}			setTimeout("RLK150_3_Auto_Spin(RLK150_3_spin_object,'RLK150_3_frame');",RLK150_3_spin_speed);		} else {			document.images[RLK150_3_imgDocID].src = eval(RLK150_3_imgObjName + RLK150_3_shot_number + ".src");			if (RLK150_3_shot_number == "1") {				RLK150_3_shot_number = RLK150_3_total_frames;			} else {				RLK150_3_shot_number = eval(RLK150_3_shot_number + " - 1");			}			setTimeout("RLK150_3_Auto_Spin(RLK150_3_spin_object,'RLK150_3_frame');",RLK150_3_spin_speed);		}	}}document.write('');document.write('<MAP NAME="RLK150_3_VR">');document.write('<AREA SHAPE="rect" COORDS="0,0,6,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'1\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="7,0,13,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'2\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="14,0,20,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'3\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="21,0,27,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'4\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="28,0,34,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'5\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="35,0,41,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'6\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="42,0,48,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'7\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="49,0,55,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'8\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="56,0,62,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'9\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="63,0,69,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'10\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="70,0,76,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'11\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="77,0,83,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'12\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="84,0,90,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'13\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="91,0,97,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'14\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="98,0,104,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'15\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="105,0,111,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'16\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="112,0,118,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'17\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="119,0,125,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'18\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="126,0,132,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'19\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="133,0,139,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'20\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="140,0,146,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'21\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="147,0,153,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'22\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="154,0,160,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'23\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="161,0,167,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'24\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="168,0,174,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'25\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="175,0,181,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'26\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="182,0,188,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'27\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="189,0,195,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'28\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="196,0,202,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'29\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="203,0,209,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'30\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="210,0,216,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'31\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="217,0,223,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'32\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="224,0,230,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'33\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="231,0,237,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'34\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="238,0,244,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'35\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('<AREA SHAPE="rect" COORDS="245,0,251,212" HREF="#" ONMOUSEOVER="RLK150_3_Rollover(\'RLK150_3_STech\',\'36\'); window.status=\'\'; return true;" ONFOCUS="RLK150_3_STech.blur(); return true;">');document.write('</MAP>');// STOP HIDING FROM OTHER BROWSERS -->
