
<!-- Hide	

// InsertMovie('movie1.mov',320,240,'true')
// InsertMovie('movie-640x480.mov',640,480,'true')
function InsertMovie(movie,width,height,autoplay)
{
adjheight=height+16;
document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="'+width+'" height="'+adjheight+'" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('<param name="width" value="'+width+'">\n');
document.write('<param name="height" value="'+adjheight+'">\n');
document.write('<param name="src" value="media/'+movie+'">\n');
document.write('<param name="autoplay" value="'+autoplay+'">\n');
document.write('<param name="loop" value="false">\n');
document.write('<param name="controller" value="true">\n');
document.write('<embed src="media/movie1.mov" width="'+width+'" height="'+adjheight+'" autoplay="'+autoplay+'" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/"></embed>\n');
document.write('</object>\n');
}



// show -->

