
Popup = function(DivID)
{
   this.movieContainer = $(DivID);
   
   this.show = function()
  {
    Effect.Appear(parent.movieContainer, {duration:0.3});
   // parent.movieContainer.show();
    return;
  }

  this.hide = function()
  {
    /*Effect.Fade(parent.movieContainer, {duration: 0.2});*/
    parent.movieContainer.style.display = 'none';
    return;
  }

  return this;
}

