function show_watch(video_url)
{
  if ($('watchme').style.height == '248px') return;
  $('watchme').style.height = '0px';
  $('watchme').innerHTML = '<div class="container"><p><img src="/images/close_ico.gif" onclick="hide_watch();" height="20px" alt="close" /></p><a href="'+video_url+'" onclick="'+unescape(ps_onclick)+'"><strong>Mediation Masters Video Seminar</strong><br /><img src="/images/2009-Mediation-Masters.jpg" alt="2009 Mediation Masters" /></a></div>';
  
  new Effect.Morph('watchme', { style: "height:248px; margin-top:-200px; margin-left:-60px;", duration: 0.5 });
  new Effect.Appear('watchme', { duration: 0.7 });
}

function hide_watch()
{
  new Effect.Fade('watchme', { duration: 0.5 });
  new Effect.Morph('watchme', { style: "height:0px; margin-top:0px; margin-left:0px;", duration: 0.5 });
}




