var id = 0;

function EmbedQuickTime(movie_url, poster_url, the_width, the_height) {
	
	the_height += 16;
	var the_html = "<div><img onclick=\"this.style.display = 'none';document.getElementById('embedded_quicktime_" + id + "').style.display = 'block'\" src=\"" + poster_url + "\" width=\""+ the_width +"\" height=\"" + (the_height - 16) + "\" /><div id=\"embedded_quicktime_" + id + "\" style=\"display:none\"><object width=\"" + the_width + "\" height=\"" + the_height + "\" classid=\"clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B\" codebase=\"http://www.apple.com/qtactivex/qtplugin.cab\">\n<param name=\"src\" value=\"" + movie_url + "\" />\n<param name=\"target\" value=\"myself\" />\n<param name=\"controller\" value=\"true\" />\n<param name=\"autoplay\" value=\"true\" />\n<embed width=\""+ the_width +"\" height=\"" + the_height + "\" type=\"video/quicktime\" pluginspage=\"http://www.apple.com/quicktime/download/\" src=\"" + movie_url + "\" target=\"myself\" controller=\"true\" autoplay=\"true\"></embed>\n</object></div></div>";
	
	id++;
	document.write(the_html);
}
