  <!-- calendar stylesheet -->
function setLang(l) { 
 // Called from links which switch the language. 
 // Sets cookie with "lang=fr" or other language code, valid for 1 year, on all the site
 // fojhLang name must also match name set in constants.php for COOKIE_LANG
 var expire = new Date();
 expire.setTime(expire.getTime() + 3600000*24*365);
 document.cookie = 'fojhLang='+l+";expires="+expire.toGMTString()+";path=/";
goToPage("http://sarahsetter.com");
}

  function jumpTo(select) {
    if (select.selectedIndex >= 0) {
        var loc = select.options[select.selectedIndex].value;
        if (loc != "") {
            document.location = loc;
        }
    }
  }
  
function popup(gg, x, y) {
	flyout=window.open(gg, "flyout", "resizable=no, scrollbars=yes,width="+x+", height="+y+", top=100, left=150")
}
function goToPage(url) {
        if (url != "") {
            document.location = url;
        }
}

