
// Beginning of Popup window code -->
function NewWindow(mypage, myname, w, h, scroll, resize) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
 if (resize == 'yes') {
	resize = ',resizable'
 } else {
	resize = ''
 }
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+''+resize+''
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// End of Popup window code -->

function printpage() {
window.print();  
}

// Beginning of Navigation Menu Mouseovers


if (document.images) {
  image1on = new Image();
  image1on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_services_over.jpg";

  image1off = new Image();
  image1off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_services.jpg";

  image2on = new Image();
  image2on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_churchinfo_over.jpg";

  image2off = new Image();
  image2off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_churchinfo.jpg";

  image3on = new Image();
  image3on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_knowGod_over.jpg";

  image3off = new Image();
  image3off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_knowGod.jpg";

  image4on = new Image();
  image4on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_getinvolved_over.jpg";

  image4off = new Image();
  image4off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_getinvolved.jpg";

  image5on = new Image();
  image5on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_needhelp_over.jpg";

  image5off = new Image();
  image5off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_needhelp.jpg";

  image6on = new Image();
  image6on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_contact_over.jpg";

  image6off = new Image();
  image6off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_contact.jpg";

  image7on = new Image();
  image7on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_photos_over.jpg";

  image7off = new Image();
  image7off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_photos.jpg";

  image8on = new Image();
  image8on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_theLatest_over.jpg";

  image8off = new Image();
  image8off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_theLatest.jpg";

  image9on = new Image();
  image9on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_events_over.jpg";

  image9off = new Image();
  image9off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_events.jpg";

  image10on = new Image();
  image10on.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_giving_over.jpg";

  image10off = new Image();
  image10off.src = "http://www.calvaryabq.org/images/web_ui/ui_nav_giving.jpg";
}

function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}

// End of Navigation Menu Mouseovers