﻿Resize();

function Resize()
{
	var imgTopLeftHeight = document.all("imgTopLeft1").clientHeight + document.all("imgTopLeft2").clientHeight +	document.all("imgTopLeft3").clientHeight;
	var tilteTHeight = document.all("tilteT").clientHeight;
	var tableDownHeight = document.all("tableDown").clientHeight;
	var divCenterHeight = document.body.clientHeight - imgTopLeftHeight - tilteTHeight - tableDownHeight - 0;		
	if(divCenterHeight<356)
	{
		divCenterHeight = 356;
	}
	document.all("divCenter").style.height = divCenterHeight;

	var imgTopLeftWidth = document.all("imgTopLeft").clientWidth;
	var tableDownWidth = document.all("tableDown").clientWidth;
	var divCenterWidth = document.body.clientWidth - imgTopLeftWidth - tableDownWidth;
	
	if(divCenterWidth<676)
	{
		divCenterWidth = 676;
	}
	document.all("divCenter").style.width = divCenterWidth;
}

window.onresize=Resize;
