function reloadVideo(url, width, height)
{
	var code = '<iframe width="'+width+'" height="'+height+'" src="'+url+'?autoplay=1" frameborder="0" allowfullscreen></iframe>';
	document.getElementById("videoHolder").innerHTML = code;
}

