<!-- Copyright 2005, Sandeep Gangadharan -->
<!-- For more free scripts go to http://www.sivamdesign.com/scripts/ -->
<!--
if (document.getElementById) {
document.writeln('<style type="text/css"><!--')
document.writeln('.texter {display:none} @media print {.texter {display:block;}}')
document.writeln('//--></style>') }

function openClose(theID) {
 if (document.getElementById("a" + theID).style.display == "block") {
  document.getElementById("a" + theID).style.display = "none";
  document.getElementById("s" + theID).firstChild.data = "more";
 } else {
  document.getElementById("a" + theID).style.display = "block";
  document.getElementById("s" + theID).firstChild.data = "collapse";
 }
}
