<!--

// Get cookie value
function getCookie(c_name)
{
if (document.cookie.length>0)
  {
  c_start=document.cookie.indexOf(c_name + "=")
  if (c_start!=-1)
    { 
    c_start=c_start + c_name.length+1 
    c_end=document.cookie.indexOf(";",c_start)
    if (c_end==-1) c_end=document.cookie.length
    return unescape(document.cookie.substring(c_start,c_end))
    } 
  }
return ""
}
video_cookie=getCookie('saw_video');

// Don't display video if seen already
if (video_cookie=="yes")
{
 document.write('<embed src="http://www.atlantadentalcenter.com/clips/mediaplayer.swf" width="200" height="178" allowfullscreen="true" allowscriptaccess="always" flashvars="&displayheight=158&file=http://www.atlantadentalcenter.com/clips/benk_testimonials.flv&height=178&width=200&overstretch=none&autostart=false&bufferlength=0&rotatetime=0&showdigits=false&volume=80" />');
}
else
{
 var cookie_date = new Date ( );  // current date & time
 cookie_date.setTime ( cookie_date.getTime() + 86400 );
 document.cookie = "saw_video=yes; expires=" + cookie_date.toGMTString();
 document.write('<embed src="http://www.atlantadentalcenter.com/clips/mediaplayer.swf" width="200" height="178" allowfullscreen="true" allowscriptaccess="always" flashvars="&displayheight=158&file=http://www.atlantadentalcenter.com/clips/benk_testimonials.flv&height=178&width=200&overstretch=none&autostart=false&bufferlength=0&rotatetime=0&showdigits=false&volume=80" />');
}

-->