			<!--
			function setCookie(name, value) {
			  var curCookie = name + "=" + escape(value) + ";";
			  document.cookie = curCookie;
			  self.location.href = self.location.href;
			}



			function setFontCookie(name, value) {
			  var curCookie = name + "=" + escape(value) + ";";
			  document.cookie = curCookie;
			  self.location.href = self.location.href;
			}

			function getCookie(name) {
			  var dc = document.cookie;
			  var prefix = name + "=";
			  var begin = dc.indexOf("; " + prefix);
			  if (begin == -1) {
				begin = dc.indexOf(prefix);
				if (begin != 0) return null;
			  } else
				begin += 2;
			  var end = document.cookie.indexOf(";", begin);
			  if (end == -1)
				end = dc.length;
			  return unescape(dc.substring(begin + prefix.length, end));
			}


			if (getCookie('fontfamily') == null) {
				var fontfamily = 'Verdana';
			  var curCookie = "fontfamily" + "=" + escape(fontfamily) + ";";
			  document.cookie = curCookie;

			} else {
				var fontfamily = getCookie('fontfamily');
			}
			if (getCookie('fontsizeq') == null) {
				var fontsize = 12;
			  var curCookie = "fontsizeq" + "=" + escape(fontsize) + ";";
			  document.cookie = curCookie;

			} else {
				var fontsize = getCookie('fontsizeq');
			}

			function SmallerFontQL () {
				var fontsize = getCookie('fontsizeq');
				fontsize = fontsize - 2;
				setFontCookie('fontsizeq',fontsize);
			}
			
			function NormalFontQL () {
				fontsize = 11;
				setFontCookie('fontsizeq',fontsize);
			}

			function LargerFontQL () {
				var fontsize = getCookie('fontsizeq');
				fontsize = parseFloat(fontsize);
				fontsize = fontsize + 2;
				setFontCookie('fontsizeq',fontsize);
			}

			
			document.write('<style type="text/css">');
			document.write('.qRow1 {font-family:"'+fontfamily+'"; font-size:'+fontsize+'px; line-height: 100%}');
			document.write('.qRow2 {font-family:"'+fontfamily+'"; font-size:'+fontsize+'px; line-height: 100%}');
			document.write('.qRow3 {font-family:"'+fontfamily+'"; font-size:'+fontsize+'px; line-height: 100%}');
			document.write('.yellowText {font-family:"'+fontfamily+'"; Color:"#FFCC33"; font-size:'+fontsize+'px; line-height: 100%}');
			document.write('<\/style>');

			//-->