//Проверяем поддержку DOM (должно быть в <Body onload="DOMCheck();">)
function WndAdminOpen(name)
{
	var scr_width=self.screen.width;
	var src_height=self.screen.height;
	var new_height=500;
	var new_width=620;
	var windowVar=window.open(name, "AdminWindow", "dependent,width="+new_width+",height="+new_height+",scrollbars=yes,status=no,toolbar=no,location=no,titlebar=no,menubar=no,directories=no,resizable=yes,left="+(scr_width-new_width)/2+",top="+(src_height-new_height)/2);
	windowVar.focus();
}

function WndVideoOpen(name, width, height, position)
{
	var scr_width=self.screen.width;
	var scr_height=self.screen.height;
	var new_height=height+4;
	var new_width=width;
	var windowVar=window.open("", name, "dependent,width="+new_width+",height="+new_height+",scrollbars=no,status=no,toolbar=no,location=no,titlebar=no,menubar=no,directories=no,resizable=yes,left="+((scr_width-new_width)/2)+",top="+((scr_height-new_height)/2));
	windowVar.document.open("text/html");
	windowVar.document.writeln('<html><title>Video</title><body topMargin="0" leftMargin="0" marginHeight="0" marginWidth="0">');
	if(name=="flash")
	{
		windowVar.document.writeln('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+width+'" height="'+height+'" id="videopleer" align="middle">');
		windowVar.document.writeln('<param name="allowScriptAccess" value="sameDomain" />');
		windowVar.document.writeln('<param name="movie" value="/gorod/video/ukhta.swf" />');
		windowVar.document.writeln('<param name="quality" value="high" />');
		windowVar.document.writeln('<embed src="/gorod/video/ukhta.swf" quality="high" bgcolor="#ffffff" width="'+width+'" height="'+height+'" name="videopleer" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
		windowVar.document.writeln('</object>');
	}
	if(name=="qtime")
	{
		windowVar.document.writeln('<object classid="clsid:02bf25d5-8c17-4b23-bc80-d3488abddc6b" width="'+width+'" height="'+height+'" bgcolor="#ffffff" codebase="http://www.apple.com/qtactivex/qtplugin.cab">');
		windowVar.document.writeln('<param name="src" value="/gorod/video/ukhta.mov" />');
		windowVar.document.writeln('<embed src="/gorod/video/ukhta.mov" width="'+width+'" height="'+height+'" bgcolor="#ffffff" border="0" pluginspage="http://www.apple.com/quicktime/" />');
		windowVar.document.write('</object>');
	}
	windowVar.document.write('</body></html>');
	windowVar.document.close();
	windowVar.focus();
}
