// Gallery script.
// With image cross fade effect for those browsers that support it.
// Script copyright (C) 2004 www.cryer.co.uk.
// Script is free to use provided this copyright header is included.

function InsertQuicktimeMovie(videoName, videoWidth, videoHeight)
{
document.write('<object classid="clsid:clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+videoWidth+'" height="'+videoHeight+'" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('<param name="src" value="'+videoName+'" />\n');
document.write('<param name="autoplay" value="true" />\n');
document.write('<param name="controller" value="true" />\n');
document.write('<embed src="'+videoName+'" width="'+videoWidth+'" height="'+videoHeight+'" autoplay="true" controller="false" pluginspage="http://www.apple.com/quicktime/download/" />\n');
document.write('</object>\n');
}
