function include(filename)
{
	var head = document.getElementsByTagName('head')[0];
	
	script = document.createElement('script');
	script.src = filename;
	script.type = 'text/javascript';
	
	head.appendChild(script);
}
var prot = "http";
if (window.location.protocol == "https") {
	prot="https";
}
include(prot + "://player.imediasee.com/imediaseePlayerWrapper.js");
