The Code

As the relevant changes are explained on the main page this is simply the original code, taken verbatim from the header for Friesner's demonstration file.

Close this window to return to Stretch-text page.

<style type="text/css">

pre, .pre {
	font-size:10pt;
	font-weight:normal;
	font-style:arial;
	color:black;
}

.question {
	cursor:default;
	display:inline;
	font-size:12pt;
	font-family:serif;
	color:black;
	font-weight:bold;
}

.answer {
	display:none;
	color:#00326d;
	font-size:10pt;
	font-family:sans-serif;
	padding: 2 0 5 0;
}

.container{
	display:inline;
}
</style>

<!--
<script type="text/javascript">
var ids=new Array();

function QAinit(){
   if(document.getElementById){
      var tids=document.getElementsByTagName('div');
      for(i=0;i<tids.length;i++)if(tids[i].className=="question")ids[ids.length]=tids[i];
         for(i=0;i<ids.length;i++)ids[i].onmouseup=setstate;
   }
}

function setstate(){
   for(i=0;i<ids.length;i++){
      if(ids[i]==this){
      var d=this.parentNode.getElementsByTagName('div')[1];
      if(d.style.display=="inline")d.style.display="none";
      else d.style.display="inline";
      }
   }
}

function expandall(){
   if(document.getElementById){
   for(i=0;i<ids.length;i++)ids[i].parentNode.getElementsByTagName('div')[1].style.display="inline";
   }
}

function collapseall(){
   if(document.getElementById){
   for(i=0;i^lt;ids.length;i++)ids[i].parentNode.getElementsByTagName('div')[1].style.display="none";
   }
}

window.onload=QAinit;
-->
</script>

Sorry if the formatting got cut off, but the most convenient way to display code within HTML is with a <pre> element, which does not wrap at the end of lines.