
window.onload = function resizeBox()
{
	var width = ($('columnOne').clientWidth - 45) / 3 ;
	$('LeftBox').style.width = width  + "px" ;
	$('middleBox').style.width = width  + 6 +"px" ;
	$('rightBox').style.width = width  + "px" ;
	
};
window.onresize = function resizeBoxS()
{
	var width = ($('columnOne').clientWidth - 45) / 3;
	
	$('LeftBox').style.width = width  + "px" ;
	$('middleBox').style.width = width  + 6 + "px" ;
	$('rightBox').style.width = width  + "px" ;

};