<!--
function JSQUICKTIME_video(where_to_place, nombre,ancho,alto)
{
	var html = "";
    html += '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="'+ancho+'" height="'+alto+'">\n';
html += '<param name="autoplay" value="true">\n';
html += '<param name="controller" value="true">\n';
html += '<param name="cache" value="true">\n';
html += '<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">\n';
html += '<param name="target" value="myself">\n';
html += '<param name="type" value="video/quicktime">\n';
html += '<param name="src" value="'+nombre+'.mov">\n';
html += '<param name="bgcolor" value="#000000">\n';
html += '<embed width="'+ancho+'" height="'+alto+'" src="'+nombre+'.mov" bgcolor="#000000" autoplay="true" controller="true" border="0" cache="true" target="myself" pluginspage="http://www.apple.com/quicktime/download/indext.html">\n';
html += '</object>\n';
$(where_to_place).update( html );
}
// -->