﻿	<!--
	var currentMenu;
	window.onload=show;
	function show(id) {
	  var menuId;
	  var d = document.getElementById(id);
	  for (var i = 1; i<=7; i++) {
	    menuId = 'smenu' + i;
		  if ((menuId != id) && (document.getElementById(menuId))) {
		    document.getElementById(menuId).style.display='none';
		  }
	  }
	  if (d) {
	    d.style.display='block';
	    currentMenu = id;
	  }
	}
	
	function hideDelay(id) {
	  currentMenu = '';
	  var timeOutDelay = 2000;
	  var d = document.getElementById(id);
	  if (d) {
	    var x=setTimeout('hide(\''+id+'\')', timeOutDelay);
	  }
	}
	
	function hide(id) {
	  var d = document.getElementById(id);
	  if (d) {
	    if (currentMenu != id) {
	      d.style.display='none';
	    }
	  }
	}
	
	function openImage(imageName, windowAttrs) {
	  window.open(imageName, 'Image', windowAttrs);
  }
	
	function openWindow(fileName, windowAttrs) {
	  window.open(fileName, 'Video', windowAttrs);
  }

	//-->