function setCookie(name, value) {
  var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:07:25 GMT; path=/; domain=go.com";
  document.cookie = curCookie;
  //self.location.href = self.location.href;
  window.location.href = window.location.href;
}

function setFontCookie(name, value) {
  var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:07:25 GMT; path=/; domain=go.com";
  document.cookie = curCookie;
  //self.location.href = self.location.href;
  window.location.href = window.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('fontsize') == null) {
	var fontsize = 11;
} else {
	var fontsize = getCookie('fontsize');
}
function changeFontSize (fontsize) {
	setFontCookie('fontsize',fontsize);
}
document.write('<style type="text/css">');
document.write('.text11 {font-size:'+fontsize+'px;line-height: 150%;font-family: Verdana, sans-serif;15px;color: #000;padding: 0px 0 30px 0px;}');
document.write('<\/style>');


