var thedate = new Date();
var themonth = thedate.getMonth() + 1;
var theday = thedate.getDate();
var theyear = thedate.getFullYear();

function monthName(monthNum) {
	if (monthNum == 1) { return "January";}
	if (monthNum == 2) { return "February";}
	if (monthNum == 3) { return "March";}
	if (monthNum == 4) { return "April";}
	if (monthNum == 5) { return "May";}
	if (monthNum == 6) { return "June";}
	if (monthNum == 7) { return "July";}
	if (monthNum == 8) { return "August";}
	if (monthNum == 9) { return "September";}
	if (monthNum == 10) { return "October";}
	if (monthNum == 11) { return "November";}
	if (monthNum == 12) { return "December";}
	return "";
}

var datestring = themonth + "/" +theday+ "/" + theyear;

var tempstr = "";

tempstr += '\n<table border=0 cellpadding=0 cellspacing=0 width="100%">';
tempstr += '\n<tr>';
tempstr += '\n	<td align=center bgcolor=#000000 valign=top width="75">';
tempstr += '\n	<img src="/images/blank.gif" width=10 height=8 border=0 alt=""><br>';
tempstr += '\n	<a href="http://www.uo.com"><img src="/images/logo.gif" width=75 height=108 border=0 alt="Ultima Online"></a></td>';
tempstr += '\n	';
tempstr += '\n	<td width="16" valign="top"><img src="/images/topleft_c.jpg" border=0 alt=""></td>';
tempstr += '\n	';
tempstr += '\n	<td background="/images/toptile.jpg"><img src="/images/blank.gif" width=5 height=10 border=0 alt=""></td>';
tempstr += '\n	<td valign="top" width="100%">';
tempstr += '\n	<FORM action="http://www.uo.com/cgi-bin/search.pl" method="POST" name="search">';
tempstr += '\n	<input type="Hidden" name="section" value="0">';
tempstr += '\n	<input type="Hidden" name="which" value="2">	';
tempstr += '\n		<table border=0 cellpadding=0 cellspacing=0 width=100%>';
tempstr += '\n		<tr>';
tempstr += '\n			<td align="center" valign="bottom"  background="/images/toptile.jpg">';
tempstr += '\n				<img src="/images/blank.gif" width=10 height=30 border=0 alt=""><br>';
tempstr += '\n				<img src="/images/welomeuo1.gif" width=180 height=53 border=0 alt=""></td>';
tempstr += '\n			<td colspan=4 background="/images/toptile.jpg">';
tempstr += '\n				<img src="/images/blank.gif" width=10 height=15 border=0 alt=""><br>';
tempstr += '\n				<font face="arial" size="-1"><img src="/images/blank.gif" width=10 height=10 border=0 alt="">';

tempstr += '<img src="/images/blank.gif" width=10 height=10 border=0 alt=""><a href="http://ad.doubleclick.net/jump/origin.eaco/origin;sz=468x60;tile=1;ord=2143204772872226?"><IMG SRC="http://ad.doubleclick.net/ad/origin.eaco/origin;sz=468x60;tile=1;ord=2143204772872226?" border="0" height="60" width="468"></a><img src="/images/blank.gif" width=1 height=68 border=0 alt="">';

tempstr += '\n			</td>';
tempstr += '\n		</tr>';
tempstr += '\n		<tr>';
tempstr += '\n			<td align="center" valign="top" background="/images/paper2.jpg"><img src="/images/welomeuo2.gif" width=180 height=16 border=0 alt=""></td>';
tempstr += '\n			<td align="center" background="/images/paper2.jpg">&nbsp;</td>';
tempstr += '\n			<td align="center" background="/images/paper2.jpg">&nbsp;</td>';
tempstr += '\n			<td align="left" valign="bottom" background="/images/paper2.jpg"><img src="/images/blank.gif" width=55 height=10 border=0 alt=""><img src="/images/search.gif" width=48 height=14 border=0 alt=""></td>';
tempstr += '\n			<td align="right" valign="bottom" background="/images/paper2.jpg"><img src="/images/logintext.gif" width=148 height=14 border=0 alt=""></td>';
tempstr += '\n		</tr>';
tempstr += '\n		<tr>';
tempstr += '\n			<td bgcolor="#9f3215" align="center"><img src="/images/h_comm.gif" width=140 height=25 border=0 alt=""></td>';
tempstr += '\n			<td bgcolor="#9f3215" align="left"><img src="/images/blank.gif" width=10 height=10 border=0 alt=""><font color="white" size="-1"><i>'+datestring+'</i></font></td>';
tempstr += '\n			<td bgcolor="#9f3215" align="right"><a href="JavaScript:document.search.submit();"><img src="/images/b_go.gif" width=41 height=12 border=0 alt=""></a></td>';
tempstr += '\n			<td bgcolor="#9f3215" align="left"><img src="/images/blank.gif" width=6 height=10 border=0 alt=""><input type="text" name="words" size=20 maxlength=80></td>';
tempstr += '\n			<td bgcolor="#9f3215" align="right"><a href="http://my.uo.com/cgi-bin/myuo.pl"><img src="/images/login2.gif" width=148 height=25 border=0 alt="MyUO"></a></td>';
tempstr += '\n		</tr>';
tempstr += '\n		</table>		';
tempstr += '\n	</td></form>';
tempstr += '\n	<td align="right" valign="top" background="/images/toptile.jpg"><img src="/images/topright_c.jpg" width=10 height=140 border=0 alt=""></td>';


tempstr += '\n	<!-- <td align="right" bgcolor="#000000"><img src="/images/blank.gif" width=2 height=10 border=0 alt=""></td> -->';
tempstr += '\n</tr>';
tempstr += '\n</table>';




document.write(tempstr);

