
<!--
 if (document.images) {
     									// Active Images

img1on = new Image();          
img1on.src = "images/s2_on.jpg";

img2on = new Image();          
img2on.src = "images/s6_on.jpg";




								// Inactive Images

img1off = new Image();          
img1off.src = "images/s2.jpg";

img2off = new Image();          
img2off.src = "images/s6.jpg";


}            
// Function to 'activate' images.
function imgOn(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "on.src");
        }
}

// Function to 'deactivate' images.
function imgOff(imgName) {
        if (document.images) {
            document[imgName].src = eval(imgName + "off.src");
        }
}
// -->


<!--
  function openWindow(url, w, h) {
    var options = "width=" + w + ",height=" + h + ",";
    options += "resizable=no,scrollbars=no,status=no,";
    options += "menubar=no,toolbar=no,location=no,directories=no";
    var newWin = window.open(url, 'newWin', options);
    newWin.focus();
  }
//-->
