function popUpVideos(popurl, popwidth, popheight, move_x, move_y, aFile)
    {
      bFile = encodeURIComponent(aFile);
      popup = window.open(popurl, 'win', 'toolbar=0, location=0, directories=0, status=1, menubar=0, scrollbars=0, resizable=0, width=' + popwidth + ', height=' + popheight);
      popup.moveTo(move_x, move_y);
      self.name = "mainWin";
      
      setTimeout("popup.createPlayer(bFile)", 750);
    }
