function Play(v,u,t){
var previousInnerHTML = new String();
var vidID=v;
var userID=u;
var titleID=t

var VWidth = "580px";
var VHeight = "423px";
previousInnerHTML= previousInnerHTML.concat("<div class='VDClose' onclick='Stop()'>close video</div><div style='color:#555;margin-left:10px'><p style='font-size:large;font-weight:bold;color:#FF4719'>"+titleID+"</p>"+
"Uploaded by: <a target='_blank'  href='http://www.youtube.com/user/"+userID+"'>"+userID+"</a><br/>"+
"<br/><a target='_blank' href='http://www.youtube.com/watch?v="+vidID+"'>"+vidID+"</a><br/><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;showsearch=0&amp;showinfo=0&amp;iv_load_policy=3&amp;autohide=1&amp;controls=0'></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;showsearch=0&amp;showinfo=0&amp;iv_load_policy=3&amp;autohide=1&amp;controls=0' type='application/x-shockwave-flash' width='"+VWidth+"' height='"+VHeight+"' allowscriptaccess='always' allowfullscreen='true'></embed></object></div>");
document.getElementById('SingASong').style.display='block';
document.getElementById('SingASong').style.fontSize='11px';
document.getElementById('SingASong').style.marginLeft='50px';
document.getElementById('SingASong').style.border='2px solid #333';
document.getElementById('SingASong').style.width='300px';
document.getElementById('Content').style.display='none';
document.getElementById('Lyrics').style.display='block';

document.getElementById('SingASong').innerHTML = previousInnerHTML;
}

function Stop(){
location.replace(location.href);
}





