/* 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 tmp = document.title;
	var labeltext=tmp.toUpperCase();;
	document.write('<font face=times color=white style="letter-spacing: 2pt"><b>' + labeltext + '</b>');

/* end of script */