﻿function changeVideo(videoURL) { 
	document.getElementById('videoObject').innerHTML = '<param name="movie" id="videoParam" value="http://www.youtube.com/v/' + videoURL + '&hl=ru_RU&fs=1&color1=0x5d1719&color2=0xcd311b"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param>					<embed id="videoEmbed" src="http://www.youtube.com/v/' + videoURL + '&hl=ru_RU&fs=1&color1=0xcc3300&color2=0xcd311b" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed>';
	
	/*
	var param = document.getElementById('videoParam');
	param.value = 'http://www.youtube.com/v/' + videoURL;
	
	var embed = document.getElementById('videoEmbed');
	embed.src = 'http://www.youtube.com/v/' + videoURL;
*/
	//alert(videoURL);
}
