//---Function to create a table top
function createtable(color, bordercolor, innerlightborder, innerdarkborder, borderwidth, thewidth,theheight){
	tabler="<table cellpadding="+borderwidth+" cellspacing=0 width="+thewidth+" height="+theheight+" style='border:"+borderwidth+"px solid "+bordercolor+"'><tr>"+
	"<td valign=top bgcolor="+color+
	" style='border-top:"+borderwidth+"px solid "+innerlightborder+";"+
	"border-left:"+borderwidth+"px solid "+innerlightborder+";"+
	"border-right:"+borderwidth+"px solid "+innerdarkborder+";"+
	"border-bottom:"+borderwidth+"px solid "+innerdarkborder+";"+
	"'>";
	document.write(tabler);
}

function endtable(){
	document.write("</td></tr></table>");
}