
function sendWindow( file, window )
       {

              msgWindow = open( file, window, 'width=550,height=650,screenx=100,screeny=30,left=100,top=30,toolbar=yes,location=yes,status=yes,menubar=no,scrollbars=yes,resizable=yes');
              if ( msgWindow.opener == null )
                     msgWindow.opener = self;
                     msgWindow.focus();
}

function postWindow( file, window )
       {

              msgWindow = open( file, window, 'width=450,height=700,screenx=100,screeny=30,left=100,top=30,toolbar=yes,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
              if ( msgWindow.opener == null )
                     msgWindow.opener = self;
                     msgWindow.focus();
}
