function dimensionChange(tDiv, tW, tH){
	if(tW != null) {
		if (tW != "keep") {
			document.getElementById(tDiv).style.width = tW + "px";
		}
	}
	if (tH != null) {
		document.getElementById(tDiv).style.height = tH + "px";
	}
}


