Вот похожий пример, только как-то надо заменить кнопку на окна
<html>
<head>
<script type="text/javascript">
function changeSize()
{
document.getElementById("klematis").height="100";
document.getElementById("klematis").width="700";
}
</script>
</head>
<body>
<img id="klematis" width="100" height="100" />
<br /><br />
<input type="button" onclick="changeSize()" value="Изменить размер изображения" />
<input type="text" value="" required='true' regex="%5C-?%5Cd+(%5C.%5Cd%7B0,%7D)?" id="digit01" placeholder="1500" style="top:85px;left:100.817px;width:60px;height:25px;" class="cElementForSelect calcElement" />
<input type="text" value="600" required='true' regex="%5C-?%5Cd+(%5C.%5Cd%7B0,%7D)?" id="digit02" placeholder="1500" style="top:85px;left:100.817px;width:60px;height:25px;" class="cElementForSelect calcElement" />
</body>
</html>