

function openWMPlayer(strFile) {
	var objWin;
	objWin=window.open('', 'msWMPlayer', config='height=270,width=600,toolbar=no,menubar=no,scrollbars=no,resizable=no,status=no');
	objWin.document.open();
	objWin.document.write('<html>\n<head>\n');
	objWin.document.write('\t<title>Windows Media Player</title>\n');
	objWin.document.write('\t<style type="text/css">body {margin:15px 140px;background:#004400;}</style>\n');
	objWin.document.write('</head>\n<body>\n');
	objWin.document.write('<OBJECT id="VIDEO" width="320" height="240" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject">\n');
	objWin.document.write('\t<PARAM NAME="uiMode" VALUE="mini">\n');
	objWin.document.write('\t<PARAM NAME="URL" VALUE="http://www.edgreen.com/video/' + strFile + '">\n');
	objWin.document.write('\t<PARAM NAME="SendPlayStateChangeEvents" VALUE="True">\n');
	objWin.document.write('\t<PARAM NAME="AutoStart" VALUE="True">\n');
	objWin.document.write('</OBJECT>\n');
	objWin.document.write('</body>\n</html>');
	objWin.document.close();
	if (window.focus) {objWin.focus();}
}
