<script type="text/javascript">
funtion closeMe()
{
window.opener.location.href = window.opener.location.href;closeWindow();
}
function closeWindow()
{
window.open('','_parent','');
window.close();
}
</script>
#######################################################
Call the closeMe() function in the popup window and parent window will be updated, then popup will closed. Works in Fireworks.
|