//Closing the Vodeo Section
function close(){
 document.getElementById('video').style.display = 'none';
 document.getElementById('video').innerHTML = '';
}

//Video Section 
function toggledisplay(obj,id,vid){
 if( (document.getElementById(obj).style.display == 'none')||(document.getElementById(obj).style.display == '') ){
 document.getElementById(obj).style.display = 'block';
 //Paste the YouTube video Code as a innerHTML content here
 var flashHTML = '<div class=closebar><div class=left>Play product video</div><a href=javascript:close()>close<img src=http://www.yelldirect.com/img/vCloseBut.gif alt=X width=27 height=17 align=absmiddle></a></div><object width=512 height=322><param name=movie value=http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf /><param name=allowFullScreen value=true /><param name=bgcolor value=#000000 /><param name=flashVars value=id='+id+'&vid='+vid+'&lang=en-gb&intl=uk&thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/p/i/bcst/videosearch/4325/68998013.jpeg&embed=1 /><embed src=http://d.yimg.com/static.video.yahoo.com/yep/YV_YEP.swf?ver=2.2.17 type=application/x-shockwave-flash width=512 height=322 allowFullScreen=true bgcolor=#000000 flashVars=id='+id+'&vid='+vid+'&lang=en-gb&intl=uk&thumbUrl=http%3A//us.i1.yimg.com/us.yimg.com/p/i/bcst/videosearch/4325/68998013.jpeg&embed=1 ></embed></object>';
 document.getElementById(obj).innerHTML = flashHTML;
 }else{
 document.getElementById(obj).style.display = 'none';
 }
}