﻿function WriteWindowsMediaVideo(path, width, height, playCount, uiMode)
{
	document.write("<OBJECT id=\"VIDEO\" width=\"" + width + "\" height=\"" + height + "\" style=\"\" CLASSID=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" type=\"application/x-oleobject\">" +
						"<PARAM NAME=\"URL\" VALUE=\"" + path + "\">" +
						"<PARAM NAME=\"SendPlayStateChangeEvents\" VALUE=\"True\">" +
						"<PARAM NAME=\"AutoStart\" VALUE=\"True\">" +
						"<PARAM name=\"uiMode\" value=\"" + uiMode + "\">" +
						"<PARAM name=\"PlayCount\" value=\"" + playCount + "\">" +
						"<PARAM name=\"Controller\" value=\"True\">" +
						"<EMBED SRC=\"" + path + "\" WIDTH=\"" + width + "\" HEIGHT=\"" + height + "\" AUTOPLAY=\"true\" CONTROLLER=\"true\" PLUGINSPAGE=\"http://www.microsoft.com/windows/windowsmedia/player/download/\"></EMBED>" +
				   "</OBJECT>")
}

function WriteWindowsMediaAudio(path, width, playCount)
{
	document.write("<OBJECT id=\"VIDEO\" width=\"" + width + "\" height=\"45\" style=\"\" CLASSID=\"CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6\" type=\"application/x-oleobject\">" +
						"<PARAM NAME=\"URL\" VALUE=\"" + path + "\">" +
						"<PARAM NAME=\"SendPlayStateChangeEvents\" VALUE=\"True\">" +
						"<PARAM NAME=\"AutoStart\" VALUE=\"True\">" +
						"<PARAM name=\"uiMode\" value=\"full\">" +
						"<PARAM name=\"PlayCount\" value=\"" + playCount + "\">" +
						"<PARAM name=\"Controller\" value=\"True\">" +
						"<EMBED SRC=\"" + path + "\" WIDTH=\"" + width + "\" HEIGHT=\"45\" AUTOPLAY=\"true\" CONTROLLER=\"true\" PLUGINSPAGE=\"http://www.microsoft.com/windows/windowsmedia/player/download/\"></EMBED>" +
				   "</OBJECT>")
}

function PopupWindow(url, windowName, width, height)
{
    var view = window.open(url, windowName, 'width=' + width + ',height=' + height + ',location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=true,toolbar=false');
    view.focus();
}