
function epathwayWindow( file, window )
       {
              var SWidth;
              var SHeight;
              SWidth = (screen.width) - (210);
              msgWindow = open( file, window, 'width=' + SWidth + ',screenx=100,screeny=30,left=100,top=30,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
              if ( msgWindow.opener == null )
                     msgWindow.opener = self;
                     msgWindow.focus();
}



function howToWindow( file, window )
       {

              msgWindow = open( file, window, 'width=650,height=530,screenx=100,screeny=30,left=100,top=30,toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes');
              if ( msgWindow.opener == null )
                     msgWindow.opener = self;
                     msgWindow.focus();
}
