function videoop(filename, width, height) {
	var ww = parseInt(width)+32;
	var wh = parseInt(height)+144;
	width = parseInt(width) + 2;
	height = parseInt(height) + 44;
	video=window.open ('','w'+filename,"left=100,top=30, width="+ww+", height="+wh);
	video.document.write("<link REL='StyleSheet' HREF='/style.css' type='text/css'><p align=center id=list><br><object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\""+width+"\" height=\""+height+"\" align=\"middle\"><param name=\"allowScriptAccess\" value=\"sameDomain\"><param name=\"movie\" value=\"/video/"+filename+".swf\"><param name=\"quality\" value=\"high\"><param name=\"bgcolor\" value=\"#ffffff\"><param name=\"allowFullScreen\" value=\"true\"><embed src=\"/video/"+filename+".swf\" quality=\"high\" align=\"middle\" bgcolor=\"#ffffff\" width=\""+width+"\" height=\""+height+"\" allowFullScreen=\"true\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></object><br><br><a href=# onclick='window.close()'>Закрыть окно</a></p>")
	video.document.close("");
	video.focus();
}
function open_div(show_div, hide_div) 
{
	document.getElementById(show_div).style.display ='inline';
	document.getElementById(hide_div).style.display = 'none';
}
		