     var exWin;  // name the window that will be opened

  // function to open window of any size specificied
  // with scrollabars

     function openScrollwin(winurl,winwidth,winheight,wincall)  {

        exWin = 
        window.open(winurl,wincall,"width=" + winwidth + ",height=" + winheight + ",scrollbars,resizable");
        exWin.focus();

     } // end function

  // function to open window of any size specificied
  // withOUT scrollbars

     function openFlashwin(winurl,winwidth,winheight,wincall)  {

        exWin = 
        window.open(winurl,wincall,"width=" + winwidth + ",height=" + winheight + ",resizable");
        exWin.focus();

     } // end function

  // function to open window of any size specificied
  // withOUT scrollbars and withOUT resize

     function openFlashHTMwin(winurl,winwidth,winheight,wincall)  {

        exWin = 
        window.open(winurl,wincall,"width=" + winwidth + ",height=" + winheight);
        exWin.focus();

     } // end function

