﻿function PlayMSVid(filenm, poptitle) {
	var vwindows=window.open("","VideoWindow", "width=320, height=285");
	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=\"application/x-mplayer2\" src=\"" + filenm + "\" name=\"MediaPlayer\" height=\"285\" width=\"320\"></embed>\r\n");
		write("</body></html>\r\n");
	}
	vwindows.document.close();
}

