BODY,P,TD {
                Font-family: Arial, Sans serif;
                Font-size: 12px;
                Color: #000000;
        }
.style1 {color: #0000a0}
.style2 {
	color: #808080;
	font-weight: bold;
}
.style5 {color: #FFFFFF; font-weight: bold; }
a.white, a.white:active, a.white:visited {
    color: #ffffff;
	text-decoration:none
	}
a.white:hover {
    color: #ffffff;
	text-decoration: underline
	}
a.black, a.black:active, a.black:visited {
    color: #000000;
	text-decoration:none;
	font-weight:bold;
	}
a.white1, a.white1:active, a.white1:visited {
    color: #ffffff;
	text-decoration:underline
	}
a.white1:hover {
    color: #ffffff;
	text-decoration:none 
	}
a.black:hover {
    color: #000000;
	text-decoration:none;
	font-weight:bold;
	}

.style6 {color: #e5ecf9}
.style7 {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
}
.style8 {
	font-family: "Times New Roman", Times, serif;
	font-weight: bold;
	font-size: x-large;
}
.style9 {
	font-size: 12px;
	font-style: italic;
	font-family: "Times New Roman", Times, serif;
}
.style10 {
	font-family: Arial, "Times New Roman", Times, serif;
	font-size: 12px;
}
.style11 {
	font-family: Arial, "Times New Roman", Times, serif;
	font-size: 10px;
}
.style13 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
.style15 {font-family: Arial, Helvetica, sans-serif; font-size: 18px; }
.style17 {font-family: Arial, Helvetica, sans-serif; font-size: 12px; }
.style18 {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 12px;
}
.style19 {color: #808080}
.a1 a:link              {  color: #00A000}
.a1 a:active    {  color: #00A000}
.a1 a:visited   {  color: #00A000}
.a1 a:hover             {  color: #00A000}
-->
</style>
<script language="JavaScript">
var showDateShort = 1;
var showDate= 2;
var showDateTime= 3;
var showTime= 4;

function ShowDateTime(dateStyle)
{
	var today = new Date();
	var dStr = "";

	switch (dateStyle)
	{
		case showDateShort:
			dStr = today.toDateString();
			break;
		case showDateTime:
			dStr = today.toLocaleString();
			break;
		case showTime:
			dStr = today.toLocaleTimeString();
			break;
		case showDate:
		default:
			dStr = today.toLocaleDateString();
			break;
	}
	document.write(dStr);
}

