// JavaScript Document
function runVideo(video, width, height){
	document.write('<div align="center" style="margin:10px;">');
	document.write('<embed src="'+video+'" width="' + width + '" height="' + height + '" loop="false" autostart="false" border="0"></embed>');
	document.write('</div>');
}

