<!--
// Preload Rollover Images



if(document.images)
{
	NavShopping = new Image();NavShopping.src = 'images/navigation/shopping_2.gif';
	NavHome = new Image();NavHome.src = 'images/navigation/home_2.gif';
	NavAboutUs = new Image();NavAboutUs.src = 'images/navigation/aboutus_2.gif';
	NavCustomerCare = new Image();NavCustomerCare.src = 'images/navigation/customercare_2.gif';
	NavContactUs = new Image();NavContactUs.src = 'images/navigation/contactus_2.gif';
	NavGiftIdeas = new Image();NavGiftIdeas.src = 'images/navigation/giftideas_2.gif';
	NavOnlineStore = new Image();NavOnlineStore.src = 'images/navigation/onlinestore_2.gif';
	NavCorporateAccounts = new Image();NavCorporateAccounts.src = 'images/navigation/corporateaccounts_2.gif';
	NavSignIn = new Image();NavSignIn.src = 'images/navigation/signin_2.gif';
}
	
function SwapImage(ImageName, SrcName)
{
	if(document.images)
		document.images[ImageName].src = SrcName;
}

function newWindow(url, width, height, usescrollbars, useresize)
{
	var appWindow;
	appWindow = window.open('', 'win', 'width=' + width + ',height=' + height +',resizable=' + useresize + ',toolbar=no,location=no,menubar=no,scrollbars=' + usescrollbars);
	appWindow.location = url;
	appWindow.focus();
}





var message = "Sorry, copying has been disabled. This page is copyrighted and\nall images and text are protected. ALL RIGHTS RESERVED."; 

// Don't edit below!

function click(e) {
   if (document.all) {
      if ((document.URL != 'http://' + document.location.hostname + '/rs2/ordertracking.php') &&
          (document.URL != 'http://' + document.location.hostname + '/rs2/catalogrequest.php') &&
          (document.URL.search('checkout2.php') == -1)) {
         if (event.button == 2) {
            alert(message);
            return false;
         }
      }
   }

   if (document.layers) {
      if (e.which == 3) {
         alert(message);
         return false;
      }
   }
}

if (document.layers) {
   document.captureEvents(Event.MOUSEDOWN);
}

document.onmousedown=click;





function showhide_giftcardmsg(id) {
   var style = document.getElementById(id).style;
   if (style.display == "none") {
      style.display = "inline"; 
   } else {
      style.display = "none";
   }
}





function ConfirmOperation(Operation) {
   ConfirmResult = confirm("Are you sure you want to " + Operation + " this record?");
   return ConfirmResult;
} 

// -->


