// JavaScript Document
/* a javascript function that takes a QT movie and calls its "Play" method */
	function PlayIt(anObj)
	{
		anObj.Play();
	}
/* a javascript function that takes a QT movie and calls its "Stop" method */
	function StopIt(anObj)
	{
		anObj.Stop();
	}
/* a javascript function that takes a QT movie and calls its "Rewind" method */
	function StartIt(anObj)
	{
		anObj.Rewind();
	}
/* a javascript function that takes a QT movie and calls its "Reverse" method */
        function ReverseIt(anObj)
	{
		anObj.Step(-1);
	}
/* a javascript function that takes a QT movie and calls its "Reverse" method */
        function ForwardIt(anObj)
	{
		anObj.Step(1);
	}
document.write('<h3>Doris Betts - Roberts Award Recipient</h3>\n');
document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" id="movie1" height="365" width="650"> \n');
document.write('<param name="src" value="http://www.ecu.edu/cs-lib/lithomecoming/upload/BettsAcceptance.mov">\n');
document.write('<param name="AUTOPLAY" value="false">\n');
document.write('<param name="CONTROLLER" value="false">\n');
document.write('<embed src="http://www.ecu.edu/cs-lib/lithomecoming/upload/BettsAcceptance.mov" name="movie1" enablejavascript="true" controller="false" autoplay="false" height="365" width="650">\n');
document.write('</object>\n');
