function showVideo(url, width, height){
//	alert(url+"|"+width+"|"+height)
var height = parseInt(height)+45
var win = window.open('','_blank',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+width+",height="+height);
	win.document.open("text/html");
	with (win.document) {
		write("<html><head><title>Группа компаний «ТАВР»</title></head><script language='JavaScript'>self.focus()</script></head> "+
		"<body leftmargin=0 topmargin=0 bottommargin=0 rightmargin=0 marginheight=0 marginwidth=0> "+
		"<OBJECT ID=\"MediaPlayer\" WIDTH=\""+width+"\" HEIGHT=\""+height+"\" classid=\"CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95\" codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112\" standby=\"Загрузка компонентов проигрывателя Microsoft Windows Media...\" type=\"application/x-oleobject\"> "+
 		"<PARAM NAME=\"FileName\" VALUE=\""+url+"\"> "+
  	"<PARAM NAME=\"ShowControls\" VALUE=\"1\"> "+
  	"<PARAM NAME=\"ShowDisplay\" VALUE=\"0\"> "+
  	"<PARAM NAME=\"ShowStatusBar\" VALUE=\"0\"> "+
   	"<PARAM NAME=\"AutoStart\" VALUE=\"0\"> "+
  	"<PARAM NAME=\"AutoSize\" VALUE=\"1\"> "+
  	"<Embed type=\"application/x-mplayer2\" "+
     "pluginspage=\"http://www.microsoft.com/windows/windowsmedia/download/AllDownloads.aspx/\" "+
     "filename=\""+url+"\" "+
     "src=\""+url+"\" "+
     "Name=MediaPlayer "+
     "ShowControls=1 "+
     "ShowDisplay=0 "+
     "ShowStatusBar=0 "+
     "AutoStart=0 "+
     "width="+width+
     " height="+height+"> "+
  	"</embed> "+
	"</OBJECT> "+
		"</body></html>");
	}
}
