<!-- BEGIN JAVASCRIPT CODE ----------------------------------------------------------\

	// BROWSER DETECTION FUNCTIONS
	// -------------------------------------------------------------------------
	var browserIsMac = ((navigator.appVersion.indexOf("Macintosh") >= 0) || (navigator.appVersion.indexOf("Mac_") >= 0));
	var browserIsMSIE = ((navigator.appName != "Netscape") || (navigator.appVersion.indexOf("MSIE") >= 0) || (navigator.appVersion.indexOf("Internet Explorer") >= 0));
	var browserVersion = parseInt(navigator.appVersion);
	if (navigator.appVersion.indexOf(" 5.") >=0) { browserVersion = 5; }

	// STYLESHEET SELECTION
	// -------------------------------------------------------------------------
	if (browserIsMac && (!browserIsMSIE || (browserIsMSIE && (browserVersion < 5)))) {
		document.write("<style type='text/css'>");
		document.write("	<"+"!--");
		document.write("	.copy { font: 12pt Verdana,Arial,Helvetica; }");
		document.write("	.pagetitle { font: bold 26pt Arial,Helvetica; color: #006600; }");
		document.write("	.subtitle { font: bold 20pt Arial,Helvetica; }");
		document.write("	.boxlink { font: 9pt Verdana,Arial,Helvetica; color: #3333FF; }");
		document.write("	.cart { font: 12pt Arial,Helvetica; }");
		document.write("	.cartbd { font: bold 12pt Arial,Helvetica; }");
		document.write("	--"+">");
		document.write("</style>");
	} else {
		document.write("<style type='text/css'>");
		document.write("	<"+"!--");
		document.write("	.copy { font: 9pt Verdana,Arial,Helvetica; }");
		document.write("	.pagetitle { font: bold 16pt Arial,Helvetica; color: #006600; }");
		document.write("	.subtitle { font: bold 14pt Arial,Helvetica; }");
		document.write("	.boxlink { font: 7pt Verdana,Arial,Helvetica; color: #3333FF; }");
		document.write("	.cart { font: 9pt Arial,Helvetica; }");
		document.write("	.cartbd { font: bold 9pt Arial,Helvetica; }");
		document.write("	--"+">");
		document.write("</style>");
	}

// END JAVASCRIPT CODE --------------------------------------------------------------/
// -->
