function s5_load_pos() {

var s5maincol = 0;
var s5insetcol = 0;

s5maincol = document.getElementById("s5_getmaincolheight").offsetHeight;
s5insetcol = document.getElementById("s5_getinsetcolheight").offsetHeight;


if (s5maincol >= s5insetcol) {
	if (document.getElementById("s5_getinsetcolheight")) {
	document.getElementById("s5_getinsetcolheight").style.height = s5maincol + "px";
	}
}

if (s5insetcol >= s5maincol) {
	if (document.getElementById("s5_getmaincolheight")) {
	document.getElementById("s5_getmaincolheight").style.height = s5insetcol + "px";
	}
}
}
