function WriteQuickTimeObjectHTML( absoluteURL , width , height )
{
document.write( '<OBJECT CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">' ) ;
document.write( '<PARAM NAME="controller" VALUE="TRUE">' ) ;
document.write( '<PARAM NAME="type" VALUE="video/quicktime">' ) ;
document.write( '<PARAM NAME="autoplay" VALUE="true">' ) ;
document.write( '<PARAM NAME="target" VALUE="myself">' ) ;
document.write( '<PARAM NAME="src" VALUE="' + absoluteURL + '">' ) ;
document.write( '<PARAM NAME="pluginspage" VALUE="http://www.apple.com/quicktime/download/index.html">' ) ;
document.write( '<embed src="' + absoluteURL + '" width="' + width + '" height="' + height + '" target="myself" controller="true" type="video/quicktime" autoplay="true" pluginspage="http://www.apple.com/quicktime/download/"></embed>' ) ;
document.write( '</OBJECT>' ) ;
}