var day   = new Array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday");
var month = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December");
today     = new Date();

document.write("<style>\n");
document.write("	.gray { color=#b8b8b8}\n");
document.write("	.caption { font-size:10; font-weight:bold; color=white}\n");
document.write("	H1 { font-family:verdana; font-size:16; font-weight:bold; color:#dddddd }\n");
document.write("	H2 { font-family:verdana; font-size:14; font-weight:bold; color:#dddddd }\n");
document.write("	STRONG { font-family:verdana; font-size:12; color:#dddddd }\n");
document.write("	P { font-family:verdana; font-size:12; color:#dddddd}\n");
document.write("	A { font-family:verdana; color:#dddddd; text-decoration:none }\n");
document.write("	TD { font-family:verdana; font-size:12; color:#dddddd }\n");
document.write("	UL { font-family:verdana; font-size:12; color:#dddddd }\n");
document.write("	LI { font-family:verdana; font-size:12; color:#dddddd }\n");
document.write("</style>");

function delineate(str)
{
	theleft = str.indexOf("=");
	if (theleft == -1) { return 1; }
	return(str.substring(theleft+1, str.length));
}
