// JavaScript Document


function hidevideobox() {
  document.getElementById('videoo').style.display='none';
  document.getElementById('fadeboxvideo').style.display='none';
  document.getElementById('videoo').innerHTML = '';

}

function vervideo(id){
  document.getElementById('videoo').style.display='block';
  document.getElementById('fadeboxvideo').style.display='block';
    document.getElementById('videoo').innerHTML = '<div class="vidpan"><object style="width:720px; height:430px;"><param name="movie" value="http://www.youtube.com/v/'+id+'?feature=player_embedded&amp;fs=1&amp;hd=1&amp;showsearch=0&amp;showinfo=0&amp;iv_load_policy=0&autoplay=1" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><embed src="http://www.youtube.com/v/'+id+'?feature=player_embedded&amp;fs=1&amp;hd=1&amp;showsearch=0&amp;showinfo=0&amp;iv_load_policy=0&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" wmode="transparent" width="720" height="430"></object><div class="close" onclick="hidevideobox();"></div></div>';
}
