function embedMovie(movieName,height,width)
	{
		var fullHeight = height + 20 ;
//			making allowances for QT controls
		document.write('<p class="movie">\n');
		document.write('<object height="' + fullHeight + '" width="' + width + 'classid="02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">\n');
		document.write('<param name="src" value="' + movieName + '/>\n');
		document.write('<param name="autoplay" value="true">\n');
		document.write('<param name="controller" value="true">\n');
		document.write('<embed src="' + movieName + '" height="' + fullHeight + '" width="'+ width + '"autoplay="true" controller="true" pluginspage="http://www.apple.com/quicktime/download/">\n');
		document.write('</embed>\n');
		document.write('</object>\n');
		document.write('</p>\n');
	}
