﻿// Hide / Show a layer with one click of a link
// Written by Lars Michael Astrom
// 2008 A3 IT Solutions
// Customized by Lars Michael Astrom for Piedmont Plastic Surgery

function hideShow(id){
  var obj = document.getElementById(id); // set the object to be changed
  var obj2 = document.getElementById('videoPopupFrame');
  if (obj.style.display == "none"){
    obj.style.display = "block";
    obj2.src = '/flash/drWillard.html';
  }else{
    obj.style.display = "none";
    obj2.src = 'about:blank';
  }
}