function show_movie(mov,title) {
	x = 640;
	y = 480;
	wdth = x + 20;
	mov_hght = y + 20;
	hght = mov_hght + 85;
	str = "toolbar=no,location=no,scrollbars=yes,width="+wdth+",height="+hght;
	newWindow = window.open("", "newWin", str);

	newWindow.document.write("<html>");
	newWindow.document.write("<head>");
	newWindow.document.write("<link rel='stylesheet' href='styles.css' type='text\/css'>");
	newWindow.document.write("<\/head>");
	newWindow.document.write("<body>");
	newWindow.document.write("<center>");
	newWindow.document.write("<table>");
	newWindow.document.write('<tr>');
	newWindow.document.write("<td class='piclabel'>"+title+"<\/td>");
	newWindow.document.write('<\/tr>');
	newWindow.document.write('<td valign="top" width="180">');
	newWindow.document.write('<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" ');
	newWindow.document.write('codebase="http://www.apple.com/qtactivex/qtplugin.cab" ');
	newWindow.document.write('height="' + mov_hght + '" width="' + x + '">');
	newWindow.document.write('<param name="autoplay" value="true">');
	newWindow.document.write('<param name="loop" value="false">');
	newWindow.document.write('<param name="controller" value="true">');
	newWindow.document.write('<embed pluginspage="http://www.apple.com/quicktime/download/" src="'+mov+'" ');
	newWindow.document.write('type="video/quicktime" controller="true" autoplay="true" loop="true" ');
	newWindow.document.write('height="' + mov_hght + '" width="' + x + '">');
	newWindow.document.write('<\/object>');
	newWindow.document.write('<\/td>');
	newWindow.document.write('<\/tr>');
	newWindow.document.write('<tr><td class="clickleft">');
	newWindow.document.write('<a href="#" onClick="self.close()">Close</a>');
	newWindow.document.write('</td></tr>');
	newWindow.document.write("<\/table>");
	newWindow.document.write("<\/center>	");
	newWindow.document.write("<\/body>");
	newWindow.document.write("<\/html>");
	newWindow.document.close();
	
	// make sure this window is in front so it can be seen
	newWindow.focus();

	return false;
}

function show_info(title) {
	document.outputForm.says.value = title;

}

function blank() {
	document.outputForm.says.value = "";

}
