function QT_movie(url,width,height) {
	document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase=http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0 width="' + width + '" height="' + height + '" align="middle">');
	document.write('<param name="src" value="' + url + '" />');
	document.write('<param name="autoplay" value="true" />');
	document.write('<embed src="' + url + '" autoplay="true" width="' + width + '" height="' + height + '" align="middle" bgcolor="#ffffff" pluginspage="http://www.apple.com/quicktime/download/">');
	document.write('</embed></object>');
	
}


function change_movie(vid, caption, width, height) {
	document.getElementById("video").src = "video/play.php?video=" + vid;
	
	content = '<b>Now Playing:</b>' + caption + '!';
	document.getElementById("video_caption").innerHTML = content;
}