function so_resize(idName)
{
	var itm, w, h;
	w = Math.max(940, document.body.clientWidth);
	h = 550;
	itm = document.getElementById(idName);
	itm.width = w;
	itm.height = h;
}