function setCookie(name, value) {
	var curCookie = name + "=" + escape(value) + "; expires=Wed, 07-Jun-2023 11:00:00 GMT; path=/;";
	document.cookie = curCookie;
	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));
}
function selectValue(fieldin,selectin){
	for (var i=0; i < fieldin.length; i++){
		if (fieldin.options[i].value == selectin){fieldin.options[i].selected = true;}
	}
}
var fontsize="",fontfam="";
if (getCookie('fontsize') != null) {fontsize = getCookie('fontsize');}
if (getCookie('fontfam') != null) {fontfam = getCookie('fontfam');}
document.write('<style type="text\/css">');
document.write('.bx,.bxconnect,font,td,th,h1{');
if (fontsize != ""){document.write('font-size:'+fontsize+'px;');}
if (fontfam != ""){document.write('font-family:'+fontfam+';');}
document.write('}');
document.write('<\/style>');