﻿<!--// the following function writes the styles that control menu hiding and showing// so that browsers with script disabled can see a fully expanded menu without having to toggle// the entire menu onLoad, allowing the onLoad event to simply expose a single menufunction writeStyles(op,a){ //v1.5 by PVIIif(op==0||document.getElementById){var tS="<style type=\"text/css\">";tS+=a+"<"+"/style>";document.write(tS);document.close();}}writeStyles(1,'.closed ul{ display:none;}.open ul{ display:block;}');-->