<!--
// 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/homeaboutus_2.gif';
	NavCustomerCare = new Image();NavCustomerCare.src = 'images/navigation/homecustomercare_2.gif';
	NavContactUs = new Image();NavContactUs.src = 'images/navigation/homecontactus_2.gif';
	NavGiftIdeas = new Image();NavGiftIdeas.src = 'images/homepage/giftideas_2.gif';
	NavOnlineStore = new Image();NavOnlineStore.src = 'images/homepage/onlinestore_2.gif';
	NavCorporateAccounts = new Image();NavCorporateAccounts.src = 'images/homepage/corporateaccounts_2.gif';
	NavSignIn = new Image();NavSignIn.src = 'images/homepage/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();
}
//-->

