function mod_selectMapsize(obj){ var ind = getMapObjIndexByName(mod_selectMapsize_target); var p = obj.value.split(","); var w = parseInt(p[0]) ; var h = parseInt(p[1]); var pos = makeClickPos2RealWorldPos(mod_selectMapsize_target,w,h); var coords = mb_mapObj[ind].extent.split(","); mb_mapObj[ind].extent = coords[0] + "," + pos[1] + "," + pos[0] + "," + coords[3]; mb_mapObj[ind].width = w; mb_mapObj[ind].height = h; document.getElementById(mod_selectMapsize_target).style.width = mb_mapObj[ind].width; document.getElementById(mod_selectMapsize_target).style.height = mb_mapObj[ind].height; document.getElementById("mapframe1").style.width = mb_mapObj[ind].width; document.getElementById("mapframe1").style.height = mb_mapObj[ind].height; setMapRequest(mod_selectMapsize_target); }