function openWindow(url, w, h) {
  popupWin = window.open(url, 'remote', 'scrollbars=0,resizable=0,dependant=0,width=' + w + ',height=' + h) ;
  popupWin.focus() ;
  popupWin.focus() ;
  popupWin.focus() ;
}

function openWindowScroll(url, w, h) {
  popupWin = window.open(url, 'remote', 'scrollbars=1,resizable=0,dependant=0,width=' + w + ',height=' + h) ;
  popupWin.focus() ;
  popupWin.focus() ;
  popupWin.focus() ;
}

function ThisYear() {
    var dtNow = new Date() ;
    y = dtNow.getFullYear() ;
//    alert(y) ;
    if (y < 999) {
       y = y + 1900
    } ;
//    alert (y) ;
    return (y);
}

function IFCal() {

    s = ("http://www.interfaithcalendar.org/" + ThisYear() + ".htm") ;
    return (s)
}

