Im using this code to refresh the parent window and close the popup window..Is there any way to minimize or change the size of the popup window intead of closing it?
<script language="JavaScript">
<!--
function refreshParent() {
window.opener.location.href = window.opener.location.href;
if (window.opener.progressWindow)
{
window.opener.progressWindow.close()
}
window.close();
}
//-->
</script>