function BeginPanel(w)
{
	var strW = ""; 
	
	if (BeginPanel.arguments.length)
	{ strW = " width=" + w; }

document.write("<table order cellPadding=0 cellSpacing=0" + strW + ">");
document.write("<tr>");
document.write("	<td width=25>");
document.write("	<img src=images/brdr1/lt.jpg></td>");
document.write("	<td background=images/brdr1/mt.jpg>");
document.write("	</td>");
document.write("	<td width=35>");
document.write("	<img src=images/brdr1/rt.jpg></td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td background=images/brdr1/ml.jpg>");
document.write("	</td>");
document.write("	<td>");
}

function EndPanel()
{
document.write("</td>");
document.write("	<td background=images/brdr1/mr.jpg>");
document.write("	</td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td>");
document.write("	<img src=images/brdr1/lb.jpg></td>");
document.write("	<td background=images/brdr1/mb.jpg>");
document.write("	</td>");
document.write("	<td>");
document.write("	<img src=images/brdr1/rb.jpg></td>");
document.write("</tr>");
document.write("</table>");
}

function LoginForm()
{
document.write("<form action='_login.php' method=post>");
document.write("<table order cellSpacing=0 cellPadding=0>");
document.write("<tr>");
document.write("	<td colSpan=3>");
document.write("	<img src='images/login/top.jpg'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td width=80 height=30>");
document.write("	<img src='images/login/1l.jpg'></td>");
document.write("	<td width=265 height=30 align=middle>");
document.write("	<input type=text name=UserName style=\"{ width: 260; border: none; }\"></td>");
document.write("	<td width=74 height=30>");
document.write("	<img src='images/login/1r.jpg'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td colSpan=3>");
document.write("	<img src='images/login/mid1.jpg'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td width=80 height=30>");
document.write("	<img src='images/login/2l.jpg'></td>");
document.write("	<td width=265 height=30>");
document.write("	<input type=password name=Password style=\"{ width: 260; border: none; }\"></td>");
document.write("	<td width=47 height=30>");
document.write("	<img src='images/login/2r.jpg'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td colSpan=3>");
document.write("	<img src='images/login/mid2.jpg'></td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td colSpan=3>");
document.write("	<table cellSpacing=0 cellPadding=0>");
document.write("	<tr>");
document.write("		<td width=160 height=33>");
document.write("		<img src='images/login/3l.jpg'></td>");
document.write("		<td width=105 height=33>");
document.write("		<input type=submit value=Enter style=\"{ width: 105; height: 33; border: 1px solid black; }\"></td>");
document.write("		<td width=154 height=33>");
document.write("		<img src='images/login/3r.jpg'></td>");
document.write("	</tr>");
document.write("	</table>");
document.write("	</td>");
document.write("</tr>");
document.write("<tr>");
document.write("	<td colSpan=3>");
document.write("	<img src='images/login/btm.jpg'></td>");
document.write("</tr>");
document.write("</table>");
document.write("</form>");
}

