// JavaScript Document
function open_win(url_add, width, height)
   {
   window.open(url_add,'edit','width='+width+',height='+height+',menubar=no,status=no,location=no,toolbar=no,scrollbars=no');
   }
   
function reloadParentAndClose()
{
    // reload the opener or the parent window
    window.opener.location.reload();
    // then close this pop-up window
    window.close();
} 
