﻿function PlayQTVid(filenm, poptitle) {
	var vwindows=window.open("","VideoWindow", "width=320, height=255");
	with (vwindows.document) {
		write("<html><head><title>" + poptitle + "</title>\r\n");
		write("</head><body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">\r\n");
		write("<embed type=\"video/quicktime\" src=\"" + filenm + "\" controller=\"true\" autoplay=\"true\" height=\"255\" width=\"320\"></embed>\r\n");
		write("</object>\r\n");
		write("</body></html>\r\n");
	}
	vwindows.document.close();
}

