<!--
	var useragent = navigator.userAgent;
	var browser = (useragent.indexOf("Nav") == -1) ? 0 : 1;


	function swapIMG (IMGid, newIMGid) {
				document.getElementById(IMGid).src = eval(newIMGid + ".src");
			}
			
	function launchWindow (url, winID) {
		
			window.name = "main";
			
			if (winID == "zoom") {
				var sFeatures = "height=500, left=10, screenX=10, screenY=10, top=10, width=650";
			}
			if (winID == "wishlist") {
				var sFeatures = "height=400, left=10, resizable, screenX=10, screenY=10, scrollbars, top=10, width=565";
			}	
				
			var oNewWindow = window.open(url, winID, sFeatures); 
			oNewWindow.focus();
		
	
	}
	
	function closeWindow() {
			var win = window.close();
	}
	
	function gotoPage (url)	{
			//closewindow();
			var win = window.open(url, "main");
			win.focus();
	}
	
	function printpage() {
			window.print();
	}
	
	function guide_open (url) {
		var win_guide = window.open(url, "guide");
		win_guide.focus();
	}
	
	function caption_on(section) {
	    var caption = document.getElementById("divCaption");
	    switch (section) {
	        case "men": 
	            caption.style.color = "#333333";
	            caption.style.backgroundColor = "#dfd7c1";
	            break;
	        case "women":
	            caption.style.color = "#333333";
	            caption.style.backgroundColor = "#B9E1E9";
	            break;
	        case "team":
	            caption.style.color = "#ecf0d7";
	            caption.style.backgroundColor = "#75804c";
	            break;
	        case "exp":
	            caption.style.color = "#333333";
	            caption.style.backgroundColor = "ecab44";
	            break;
	    }
	}
	
	function caption_off(section) {
	    var caption = document.getElementById("divCaption");
	    switch (section) {
	        case "men": 
	            caption.style.color = "#afa997";
	            caption.style.backgroundColor = "#EBE6D8";
	            break;
	        case "women":
	            caption.style.color = "#a9b1b9";
	            caption.style.backgroundColor = "#DAEFF3";
	            break;
	        case "team":
	            caption.style.color = "#75804c";
	            caption.style.backgroundColor = "#ADB58B";
	            break;
	        case "exp":
	            caption.style.color = "#b79756";
	            caption.style.backgroundColor = "#F4CA73";
	            break;
	    }
	}
	
//-->
