function PlayTheVideo(v,i){

var previousInnerHTML = new String();
var vidID=v;
var divID=i;
var VWidth = "400px";
var VHeight = "233px";

previousInnerHTML= previousInnerHTML.concat("<div class='closebutton' style='margin-left:100px;' onclick='VideoOff()'>Close</div><div style='margin-left:100px;'><a target='_blank' style='color:orange;font-size:10px;'  href='http://youtu.be/"+vidID+"'>http://youtu.be/...</a></div><div class='spacer'></div><div style='margin-top:-5px;margin-left:100px;'><object width='"+VWidth+"' height='"+VHeight+"'>"+
"<param name='movie' value='http://www.youtube.com/v/"+vidID+"?version=3&amp;hl=en_US&amp;autoplay=1&amp;showinfo=0&amp;showsearch=0&amp;iv_load_policy=3'></param>"+
"<param name='allowFullScreen' value='true'></param>"+
"<param name='allowscriptaccess' value='always'></param>"+
"<embed src='http://www.youtube.com/v/"+vidID+"?version=3&amp;hl=en_US&amp;autoplay=1&amp;showinfo=0&amp;showsearch=0&amp;iv_load_policy=3'"+
"type='application/x-shockwave-flash' width='"+VWidth+"' height='"+VHeight+"' allowscriptaccess='always' allowfullscreen='true'></embed></object></div>");

document.getElementById('hidDiv').style.display='block';
document.getElementById('hide_button').style.display='none';
document.getElementById(i).style.height=VHeight;
document.getElementById('hidDiv').innerHTML = previousInnerHTML;
}

function VideoOff(){



var previousInnerHTML = new String();
previousInnerHTML= previousInnerHTML.concat("");
document.getElementById('hide_button').style.display='block';
document.getElementById('hidDiv').style.display='none';

document.getElementById('hidDiv').innerHTML = previousInnerHTML;
}
