/* All this script does is to extract the page title from the document
   and output it with a CSS format. This is "fall through" code (no functions)
   
   Copyright 2007 by Charles D. Montgomery d.b.a. CDM Custom Software Services
   (CDMCSS.com)
   
   Pirate this is you must, just leave the copyright line in place to remain legal. */
	var labeltext='';
	labeltext=document.title;
	if (labeltext != '')
		document.write('<P><p class="pgtitle">' + labeltext + '</p>');

/* end of script (ever notice how often there are more comments than code?)*/
