
function doWriteEnd()
{
	var html = '';
	html += '</tr>';
	html += '<tr>';

	document.write (html);
}

function doResetMaxPage(_this,_max)
{
	if (_this.value > _max)
	{
		_this.value = (_max);
	}else{
		_this.value = (_this.value);
	}
}