function Video(sURL, iWidth, iHeight, iAutoStart)
{
	document.write('<!--Video Player-->');
	document.write('<object id=\"objVideo\" width=\"' + iWidth + '\" height=\"' + iHeight + '\" classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\" standby=\"Loading Microsoft Windows Media Player components...\" type=\"application/x-oleobject\">');
	document.write('<!-- IE icin -->');
	document.write('<param name=\"FileName\" value=\"' + sURL + '\">');
	document.write('<param name=\"AutoStart\" value=\"' + iAutoStart + '\">');
	document.write('<param name=\"AutoSize\" value=\"0\">');
	document.write('<param name=\"Volume\" value=\"-200\">');
	document.write('<param name=\"ShowControls\" value=\"1\">');
	document.write('<param name=\"ShowDisplay\" value=\"0\">');
	document.write('<param name=\"ShowStatusBar\" value=\"0\">');
	document.write('<param name=\"ShowGotoBar\" value=\"0\">');
	document.write('<param name=\"ShowTracker\" value=\"1\">');
	document.write('<param name=\"ShowPositionControls\" value=\"0\">');
	document.write('<param name=\"EnablePositionControls\" value=\"0\">');
	document.write('<param name=\"EnableContextMenu\" value=\"0\">');
	document.write('<!-- Firefox icin -->');
	document.write('<embed type=\"application/x-mplayer2\" pluginspage=\"http://www.microsoft.com/Windows/MediaPlayer/download/default.asp\" filename=\"' + sURL + '\" name=\"TVLivePlay\" AutoStart=\"' + iAutoStart + '\" AutoSize=\"0\" Volume=\"-200\" ShowControls=\"1\" ShowDisplay=\"0\" ShowStatusBar=\"0\" ShowGotoBar=\"0\" ShowTracker=\"0\" ShowPositionControls=\"0\" EnablePositionControls=\"1\" EnableContextMenu=\"1\" width=\"' + iWidth + '\" height=\"' + iHeight + '\"></embed>');
	document.write('</object>');
	document.write('<!--Video Player-->');
}
