
if (document.getElementById) {
 document.writeln('<style type="text/css"><!--')
 document.writeln('.links {display:none; padding-left:0px; color:#333333}')
 document.writeln('.linksOff {padding-left:14px; color:#333333}')
 document.writeln('a:hover.link {text-decoration: underline}')
 document.writeln('//--></style>') }

function openClose(theID) {
 if (document.getElementById(theID).style.display == "block") { document.getElementById(theID).style.display = "none" }
 else { document.getElementById(theID).style.display = "block" } }
