//<SCRIPT>
var szBgColors = new Array( "black", "maroon", "forestgreen", "navy", "gold", null );
var szFgColors = new Array( "white", "gold", "yellow", "white", "black", null );
var nColorIdx = Math.floor( Math.random() * 5 );
var nImageWidth = 64;

function iccop_wraptags( szParam, szTag )
{
	var sz = "<" + szTag + ">";
	sz += szParam;
	sz += "</" + szTag + ">";
	return sz;
}

	var szTags = "";
//	szTags += "<A target=\"_blank\" href=\"http://www.osai.com/\">";
//	szTags += "<img src=\"http://www.osai.com/images/Logo/osai.com-logo-web-" + nImageWidth + ".png\" BORDER=0 ALT=\"This site hosted by Online Solutions and Innovation\">";
//	szTags += "</A\">";
//	szTags += "<BR>";
	szTags += "<A target=\"_blank\" href=\"http://www.osai.com/\" title=\"http://www.osai.com\">";
	szTags += "<FONT FACE=Tahoma SIZE=1 COLOR=" + szFgColors[ nColorIdx ] + ">Hosted by Online Solutions and Innovation</FONT>";	
	szTags += "</A\">";
	szTags = iccop_wraptags( szTags, "SPAN class=OSAI_LOGO" );
	szTags = iccop_wraptags( szTags, "TD ALIGN=CENTER" );
	szTags = iccop_wraptags( szTags, "TR" );
	szTags = iccop_wraptags( szTags, "TABLE STYLE=\"{color:" + szFgColors[ nColorIdx ] + ";background:" + szBgColors[ nColorIdx ] + ";border-top:outset 1px;border-right:outset 1px;border-left:outset 1px;border-bottom:outset 1px;}\"" );
	
	document.write( szTags );
	delete szFgColors;
	delete szBgColors;
//</SCRIPT>
