<!-- Hide this code from non-JavaScript browsers


// (C) 2002 www.CodeLifter.com
// http://www.codelifter.com
// Free for all users, but leave in this header.

// ==============================
// Set the following variables...
// ==============================

// Set the slideshow speed (in milliseconds)
var SlideShowSpeed = 4000;

// Set the duration of crossfade (in seconds)
var CrossFadeDuration = 1;

var Picture = new Array(); // don't change this
var Caption = new Array(); // don't change this

// Specify the image files...
// To add more images, just continue
// the pattern, adding to the array below.
// To use fewer images, remove lines
// starting at the end of the Picture array.
// Caution: The number of Pictures *must*
// equal the number of Captions!

Picture[1]  = 'images/clock_1.jpg';
Picture[2]  = 'images/clock_2.jpg';
Picture[3]  = 'images/clock_3.jpg';
Picture[4]  = 'images/clock_4.jpg';
Picture[5]  = 'images/clock_5.jpg';
Picture[5]  = 'images/clock_6.jpg';

// Specify the Captions...
// To add more captions, just continue
// the pattern, adding to the array below.
// To use fewer captions, remove lines
// starting at the end of the Caption array.
// Caution: The number of Captions *must*
// equal the number of Pictures!

Caption[1]  = "This is the first caption.";
Caption[2]  = "This is the first caption.";

// =====================================
// Do not edit anything below this line!
// =====================================

var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;

if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
var Roll=new Array();


Roll["a"] = new RollOver("https://www.usclock.net/images/navigation_01.gif");
Roll["b"] = new RollOver("https://www.usclock.net/images/navigation_02.gif");
Roll["c"] = new RollOver("https://www.usclock.net/images/navigation_03.gif");
Roll["d"] = new RollOver("https://www.usclock.net/images/navigation_04.gif");
Roll["e"] = new RollOver("https://www.usclock.net/images/navigation_05.gif");
Roll["f"] = new RollOver("https://www.usclock.net/images/navigation_06.gif");



function RollOver(on_url)
{       this.on        = new Image();
        this.on.src    = on_url;
}

function flip ()
{       if(arguments.length==1) arguments[1]=arguments[0];
        for(i=0 ; i<arguments.length ; i+=2){
                temp = document.images[arguments[i]].src;
                document.images[arguments[i]].src  = Roll[arguments[i+1]].on.src;
                Roll[arguments[i+1]].on.src = temp;
        }
}



var strShipFirst = "";
var strShipLast = "";
var strShipAddress = "";
var strShipAddress2 = "";
var strShipCity = "";
var strShipPostalCode = "";
var strShipState = "";
var strShipStateIndex = 0;
var strShipCountry = "";
var strShipCountryIndex = 0;
var sprovince = "";
function InitSaveVariables(form) {
strShipFirst = form.strShipFirst.value;
sprovince = form.sprovince.value;
strShipLast = form.strShipLast.value;
strShipAddress = form.strShipAddress.value;
strShipAddress2 = form.strShipAddress2.value;
strShipCity = form.strShipCity.value;
strShipPostalCode = form.strShipPostalCode.value;
strShipStateIndex = form.strShipState.selectedIndex;
strShipState = form.strShipState[strShipStateIndex].value;
strShipCountry = form.strShipCountry[strShipCountryIndex].value;
}

function ShipToBillPerson(form) {
if (form.copy.checked) {
InitSaveVariables(form);
form.strShipFirst.value = form.strFirst.value;
form.sprovince.value = form.province.value;
form.strShipLast.value = form.strLast.value;
form.strShipAddress.value = form.strAddress1.value;
form.strShipAddress2.value = form.strAddress2.value;
form.strShipCity.value = form.strCity.value;
form.strShipPostalCode.value = form.strPostalCode.value;
form.strShipState.selectedIndex = form.strState.selectedIndex;
form.strShipCountry.selectedIndex = form.strCountry.selectedIndex;
}
else {
form.strShipFirst.value = strShipFirst;
form.strShipLast.value = strShipLast;
form.sprovince.value = sprovince;
form.strShipAddress.value = strShipAddress;
form.strShipAddress2.value = strShipAddress2;
form.strShipCity.value = strShipCity;
form.strShipPostalCode.value = strShipPostalCode;
form.strShipState.selectedIndex = strShipStateIndex;
form.strShipCountry.selectedIndex = strShipCountryIndex;
   }
}




function checkCapsLock( e ) {
	var myKeyCode=0;
	var myShiftKey=false;
	var myMsg='Caps Lock is On.\n\nPlease take off Caps Lock to proceed';

	// Internet Explorer 4+
	if ( document.all ) {
		myKeyCode=e.keyCode;
		myShiftKey=e.shiftKey;

	// Netscape 4
	} else if ( document.layers ) {
		myKeyCode=e.which;
		myShiftKey=( myKeyCode == 16 ) ? true : false;

	// Netscape 6
	} else if ( document.getElementById ) {
		myKeyCode=e.which;
		myShiftKey=( myKeyCode == 16 ) ? true : false;

	}

	// Upper case letters are seen without depressing the Shift key, therefore Caps Lock is on
	if ( ( myKeyCode >= 65 && myKeyCode <= 90 ) && !myShiftKey ) {
		alert( myMsg );

	// Lower case letters are seen while depressing the Shift key, therefore Caps Lock is on
	} else if ( ( myKeyCode >= 97 && myKeyCode <= 122 ) && myShiftKey ) {
		alert( myMsg );

	}
}
function displayPopup(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=0,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=50,top=50";
popupHandle = open(url, "Upload_Image", properties);

}
function displayPopup2(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=0,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=50,top=50";
popupHandle = open(url, "Upload_Image", properties);

}
function displayPopup3(url, height, width) {
properties = "toolbar=0,location=0,scrollbars=1,height=" + height;
properties = properties + ",width=" + width;
properties = properties + ",left=50,top=50";
popupHandle = open(url, "Upload_Image", properties);

}


// End hiding -->















































