function roundBoxStart( width , height )
{
	document.write( "<table border='0' cellpadding='0' cellspacing='0'>" );
	document.write( "	<tr>" );
	document.write( "		<td background='images/roundbox_lefttop.jpg' width='36' height='36'></td>" );
	document.write( "		<td background='images/roundbox_top.jpg' width='" + width + "' height='36'></td>" );
	document.write( "		<td background='images/roundbox_righttop.jpg' width='36' height='36'></td>" );
	document.write( "	</tr>" );
	document.write( "	<tr>" );
	document.write( "		<td background='images/roundbox_left.jpg' width='36'></td>" );
	document.write( "		<td bgcolor='#000000' height='" + height +"'>" );
	document.write( "			<!-- round box content start -->" );
}

function roundBoxSeparator( height )
{
	document.write( "			<!-- round box content end -->" );
	document.write( "		</td>" );
	document.write( "		<td background='images/roundbox_right.jpg' width='36'></td>" );
	document.write( "	</tr>" );
	document.write( "	<tr>" );
	document.write( "		<td background='images/roundbox_separator_left.jpg' width='36' height='36'></td>" );
	document.write( "		<td background='images/roundbox_separator.jpg' height='36'></td>" );
	document.write( "		<td background='images/roundbox_separator_right.jpg' width='36' height='36'></td>" );
	document.write( "	</tr>" );
	document.write( "	<tr>" );
	document.write( "		<td background='images/roundbox_left.jpg' width='36'></td>" );
	document.write( "		<td bgcolor='#000000' height='" + height +"'>" );
	document.write( "			<!-- round box content start -->" );
}

function roundBoxProductEnd( productURL )
{
	document.write( "			<br />" );
	document.write( "			<div style='text-align:right'>" );
	document.write( "				<a href='" + productURL + "'>" );
	document.write( "					<img style='border:0' src='images/read_more.jpg'>" );
	document.write( "				</a>" );
	document.write( "			</div>" );
	document.write( "			<!-- round box content end -->" );
	document.write( "		</td>" );
	document.write( "		<td background='images/roundbox_right.jpg' width='36'></td>" );
	document.write( "	</tr>" );
	document.write( "	<tr>" );
	document.write( "		<td background='images/roundbox_leftbottom.jpg' width='36' height='36'></td>" );
	document.write( "		<td background='images/roundbox_bottom.jpg' height='36'></td>" );
	document.write( "		<td background='images/roundbox_rightbottom.jpg' width='36' height='36'></td>" );
	document.write( "	</tr>" );
	document.write( "</table>" );
}

function roundBoxEnd()
{
	document.write( "			<!-- round box content end -->" );
	document.write( "		</td>" );
	document.write( "		<td background='images/roundbox_right.jpg' width='36'></td>" );
	document.write( "	</tr>" );
	document.write( "	<tr>" );
	document.write( "		<td background='images/roundbox_leftbottom.jpg' width='36' height='36'></td>" );
	document.write( "		<td background='images/roundbox_bottom.jpg' height='36'></td>" );
	document.write( "		<td background='images/roundbox_rightbottom.jpg' width='36' height='36'></td>" );
	document.write( "	</tr>" );
	document.write( "</table>" );
}