// JavaScript Document

// Begin fix Column
	var orderColumn = 1;
	while (document.getElementById('tdColumn' + (orderColumn)))	{++orderColumn;}
	
	var countColumn = orderColumn - 1; 
	orderColumn = 1;
	var widthColumn = 100;
	
	if (countColumn) widthColumn = Math.round(100/(countColumn) + 0.4);
	//alert(widthColumn);
	
	while (document.getElementById('tdColumn' + (orderColumn)))
	{
		document.getElementById('tdColumn' + (orderColumn)).style.width = widthColumn + '%'; ++orderColumn;
	}
	// remove dot line right
	if (document.getElementById('tdDot' + (--orderColumn)))document.getElementById('tdDot' + (orderColumn)).innerHTML="";

// End fix Column
