function insertQMovie(movieName)
{
document.write('<object CLASSID="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="250" height="158" CODEBASE="http://www.apple.com/qtactivex/qtplugin.cab">\n');
document.write('<param name="src" value="' + movieName + /*'../AdamDoThese/SpringNew2.mov*/'">\n');
document.write('<param name="autoplay" value="false">\n');
document.write('<param name="loop" value="false">\n');
document.write('<param name="controller" value="true">\n');
document.write('<embed src="' + movieName + /*'../AdamDoThese/SpringNew2.mov*/'" width="250" height="158" autoplay="false" loop="false" controller="true" pluginspage="http://www.apple.com/quicktime/">\n');
document.write('</embed>\n');
document.write('</object>\n');

}


function popUpMovie(movieTitle) {
	var myUrl = "../videoArchive/" + movieTitle + ".mov"; 
	movieWindow = window.open( myUrl , movieTitle,
"menubar=no,width=250,height=158,toolbar=no");
	movieWindow.document.body.style.backgroundColor = '#000000';
	movieWindow.embedArray = movieWindow.document.getElementsByTagName('embed');
	movieWindow.embedArray[0].style.backgroundColor = '#000000';
	
}