
function mapWindow( file, window )
       {
              var SWidth;
              var SHeight;
              SWidth = (screen.width) - (210);
              msgWindow = open( file, window, 'resizable=no,width=' + SWidth + ',screenx=200,screeny=1,left=200,top=1,toolbar=no,location=yes,status=yes,menubar=no,scrollbars=yes,resizable=yes' );
              if ( msgWindow.opener == null )
                     msgWindow.opener = self;
                     msgWindow.focus();
}

