var BASCOM_FONT = 'BASCOM_FONT';
var fontSelection = getCookie(BASCOM_FONT);
var cookieDate = new Date();

cookieDate.setYear(cookieDate.getYear() + 2);

//  deleteCookie(BASCOM_FONT);

if ( ! (fontSelection=='small' || fontSelection=='medium' || fontSelection=='large') )
{
  fontSelection = "medium";
  setCookie(BASCOM_FONT, fontSelection, cookieDate);
//  setFontWindow();
}

// function setFontWindow()
// {
//   window.open("/setfont.asp", "setfont", "width=500,height=400");
// }

function setBascomFont(value)
{
  setCookie(BASCOM_FONT, value, cookieDate);
  self.location.reload();
}
