//	 Basic browser and DHTML compatibility check
var isDHTML = 0;var isAll = 0;var isID = 0;if (document.getElementById) {isID = 1; isDHTML = 1;}else if (document.all) {isAll = 1; isDHTML = 1;}else {alert('You are running an older browser and wont be able to view this site as designed');}function findDOM(objectID,withStyle) {if (withStyle == 1) {if (isID) {return (document.getElementById(objectID).style);}else if (isAll) {return (document.all[objectID].style);}}else {if (isID) {return (document.getElementById(objectID));}else if (isAll) {return (document.all[objectID]);}}}
//	Main appearance functions for navigation menu
function showMenu(menuName) {domStyle = findDOM(menuName, 1);domStyle.visibility = "visible";}function hideMenu(menuName) {domStyle = findDOM(menuName, 1);domStyle.visibility = "hidden";}

