// JavaScript Document
	NS6 = 0;
	is5 = 0;
	Not5 = 0;
	isMac = 0;
	NS4 = 0;
	IE4 = 0;
	IE5 = 0;

	if (document.layers) 
	{
		NS4 = 1;
	}
	else if (document.all)
	{
		IE4 = 1;
	}
	else if (document.getElementById)
	{
		NS6 = 1;
	}
	ismac = (navigator.appVersion.indexOf("Mac") != -1);
	if (navigator.appVersion.indexOf("5.")!=-1)
	{
		is5 = 1;
	}
	else
	{
		Not5 = 1;
	}
	//  redirect if NS 6
	//	if (NS6 || (isMac && Not5)) window.location="";

	NS4 = (document.layers);
    IE4 = (document.all);
	ver4 = (NS4 || IE4);
	IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
	isMac = (navigator.appVersion.indexOf("Mac") != -1);
	isMenu = ((NS4 && !isMac) || (IE4 && !isMac) || (IE5 && isMac));

	function popUp()
	{
		return
	};
	
	function popDown()
	{
		return
	};
	
	if (!ver4) event=null;
