<!--

  if (window != top) top.location.href = location.href;

  // ok, we have a JavaScript browser

  var browserOK = true;
  var pics = new Array();

  var objCount = 0; // counts the number of (changing) images on web-page

function preload(name, first, second) {  

  // preload images and place them in an array

  if (browserOK) {     
    pics[objCount] = new Array(3);
    pics[objCount][0] = new Image();
    pics[objCount][0].src = first;
    pics[objCount][1] = new Image();
    pics[objCount][1].src = second;
    pics[objCount][2] = name;
    objCount++;
  }
}

function on(name){
  if (browserOK) {
     for (i = 0; i < objCount; i++) {
      if (document.images[pics[i][2]] != null)
        if (name != pics[i][2]) { 
          // set back all other pictures
          document.images[pics[i][2]].src = pics[i][0].src;
        } else {
           // show the second image because cursor moves across this image
           document.images[pics[i][2]].src = pics[i][1].src;
        }
    }
  }
}

function off(){
  if (browserOK) {
     for (i = 0; i < objCount; i++) {
      // set back all pictures
      if (document.images[pics[i][2]] != null) 
        document.images[pics[i][2]].src = pics[i][0].src;
    }
  }
}

// preload images - you have to specify which images should be preloaded
// and which Image-object on the wep-page they belong to (this is the first
// argument). Change this part if you want to use different images (of course
// you have to change the body part of the document as well)

preload("link1", "images/nav_home.jpg", "images/nav_home_on.jpg");
preload("link2", "images/nav_2.jpg", "images/nav_2_on.jpg");
preload("link3", "images/nav_3.jpg", "images/nav_3_on.jpg");
preload("link4", "images/nav_4.jpg", "images/nav_4_on.jpg");
preload("link5", "images/nav_5.jpg", "images/nav_5_on.jpg");
preload("link6", "images/nav_6.jpg", "images/nav_6_on.jpg");
preload("link7", "images/nav_7.jpg", "images/nav_7_on.jpg");
preload("link8", "images/nav_8.jpg", "images/nav_8_on.jpg");
preload("link9", "images/nav_9.jpg", "images/nav_9_on.jpg");
preload("link10", "images/nav_10.jpg", "images/nav_10_on.jpg");
preload("link11", "images/nav_11.jpg", "images/nav_11_on.jpg");
preload("link12", "images/nav_12.jpg", "images/nav_12_on.jpg");
preload("link13", "images/nav_13.jpg", "images/nav_13_on.jpg");
preload("link14", "images/nav_14.jpg", "images/nav_14_on.jpg");
preload("link15", "images/nav_15.jpg", "images/nav_15_on.jpg");

now = new Date();
month = now.getMonth();
var textMonth;

	if (month == 0) textMonth = "January ";
	if (month == 1) textMonth = "February ";
	if (month == 2) textMonth = "March ";
	if (month == 3) textMonth = "April ";
	if (month == 4) textMonth = "May ";
	if (month == 5) textMonth = "June ";
	if (month == 6) textMonth = "July ";
	if (month == 7) textMonth = "August ";
	if (month == 8) textMonth = "September ";
	if (month == 9) textMonth = "October ";
	if (month == 10)textMonth = "November ";
	if (month == 11)textMonth = "December ";

function confirm_email() {

  if (document.form.email.value == "") {
    alert('Sorry, you must enter your E-mail Address.');
    document.form.email.focus();
    return false;
  } else {
  if (confirm('Is   ' + document.form.email.value + '   correct?')) {
    return true;
    } else {
        document.form.email.focus();
        return false;
    }
  }

}

function changeColor(object, color) {
    object.bgColor = color;
}

//-->

