﻿function wmpCreate(url) {
var str = "";
str = '<object width="310" height="268" data="data:application/x-silverlight-2," id="silverlightControl" type="application/x-silverlight-2">';
//r = '<object height="500 data="data:application/x-silverlight-2," id="silverlightControl" type="application/x-silverlight-2">';
str += '<param name="initParams" value="AutoStart=False, StartPoint=1, SourceID='+url+', SourceType=clip, EnableClosedCaptions=False" />';
str += '<param name="source" value="http://cms-k12-nc.granicus.com/core/Players/SL/ModernPlayer.xap"/>';
str += '<param name="background" value="black" />';
str += '<param name="minRuntimeVersion" value="4.0.50401.0" />'; 
str += '<param name="autoUpgrade" value="true" />';
str += '<param name="enabled" value="-1" />';
str += '<param name="enablehtmlaccess" value="true"/>';
str += '<a href="http://go.microsoft.com/fwlink/?LinkID=149156&v=4.0.50401.0" style="text-decoration:none">';
str += '<img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>';
str += '</a>';
str += '</object>';
return str;
}
function videoCreate() {
var VideoID_Div = document.getElementById('VideoID');
var VideoSource = VideoID_Div.innerText;
VideoID_Div.style.display = 'none';
document.getElementById('Player').innerHTML = wmpCreate(VideoSource);
} 
