function addToWishlist(screen, productNo) {
	if (screen) {
  		x = Math.floor((screen.width-635)/2);
  		y = Math.floor((screen.height-430)/2);
  		openPopupURL("wishlist/wish.asp?styleNumber=" + productNo + "&todo=add", "wishlist", 0, 0, 0, 0, 0, 1, 1, 430, 635, y, x, 1);
	}
}

function getDirections(address, state, city, zip){
	var link = 'http://www.mapquest.com/maps/map.adp?address=' + address + '&city=' + city + '&state=' + state + '&zip=' + zip + '&zoom=8'
	newWin = window.open(link, 'directions', 'height=750,width=600,top=10,left=10,scrollbars=yes,resizable=yes');
}
function swapColor(large, img)
{
	document.images[large].src = img;
}