// JavaScript Document
//<!--

function setDivSize() {
	var bodyObj = document.getElementById("bo");
	var w1Obj = document.getElementById(w1Id);
	var w2Obj = document.getElementById(w2Id);
	
	if (w1Obj ){
		if (document.all) {
			w2Width = bodyObj.clientWidth - w1Width;
			w1Height = bodyObj.clientHeight - heightOffset;
			w2Height = bodyObj.clientHeight - heightOffset;
			if (txtContId) {
				var txtContObj = document.getElementById(txtContId);
				txtContWidth = txtContObj.clientWidth;
			}
		}
		else {
			w2Width = window.self.innerWidth - w1Width;
			w1Height = window.self.innerHeight - heightOffset;
			w2Height = window.self.innerHeight - heightOffset;
		}
		if (w2Width >= 0 ) {
			w2Obj.style.width = w2Width;
		}
		if (w2Height >= 0 && setH) {
			w1Obj.style.height = w1Height;
			w2Obj.style.height = w2Height;	
		}
		return true;
	}
}
//-->