<!--
function navFlyout() {
  if (document.all && document.getElementById) {
    if(navRoot = document.getElementById("nav_top_outside")) {
      for (i = 0; i < navRoot.childNodes.length; i++) {
      	node = navRoot.childNodes[i];
      	if (node.nodeName == "LI") {
      		node.onmouseover = function() {
      			this.className += " over";
      		}
      		node.onmouseout = function() {
      			this.className = this.className.replace(" over", "");
      		}
      	}
      }
    }
    
    if(navRoot = document.getElementById("nav_left_outside")) {
      for (i = 0; i < navRoot.childNodes.length; i++) {
      	node = navRoot.childNodes[i];
      	if (node.nodeName == "LI") {
      		node.onmouseover = function() {
      			this.className += " over";
      		}
      		node.onmouseout = function() {
      			this.className = this.className.replace(" over", "");
      		}
      	}
      }
    }
  }
}

function popup(page, w, h) {
  window.open("/"+page+".php", "myWindow", "status = 1, height = "+h+", width = "+w+", resizable = 0")
}


        function openVideo() {
          window.open( "casketVideo.php", "myWindow", "status = 1, height = 295, width = 335, resizable = 0");
        }
-->