// ф-ия открывания окна для фото
function WinOpenPhoto(id,x,y){
	y+=50;
	window.open('/photo_view/'+id,'','width='+x+',height='+y+',top=10,left=10,scrollbars=0,resizable=0');
}
// ф-ия открывания окна для статей
function WinOpenArticle(id,x,y){
	y+=50;
	window.open('/photo_view/'+id,'','width='+x+',height='+y+',top=10,left=10,scrollbars=0,resizable=0');
}
// ф-ия открывания окна превью
function WinOpenPreview(file,x,y) {
	window.open('/includes/photo_view.php?file='+file,'','width='+x+',height='+y+',top=10,left=10,scrollbars=0,resizable=0');
	return false;
}
// ф-ия открывания окна новостей
function WinOpenNews(id,x,y) {
	window.open('/includes/news_view.php?id='+id,'','width='+x+',height='+y+',top=10,left=10,scrollbars=0,resizable=0');
	return false;
}
function doAction() {
	pvdWin= open("", "pvdwin", "width=450,height=400");
	pvdWin.focus(); pvdWin.document.open();
	pvdWin.document.write("<html><head><title>Сайт Дмитрия Пирогова | Голосование");
	pvdWin.document.write("</title></head>");
	pvdWin.document.write("<body topmargin=0 bgcolor=#E7E7F7 leftmargin=0 marginwidth=0 marginheight=0>");
	pvdWin.document.write("<table width=100% height=100% align=center><tr><td align=center><font face=\"Verdana\" color=#292C84><b>Пожалуйста подождите. <br> Идет обработка данных...</b></font></td></tr></table>");
	pvdWin.document.write("</body></html>");
	pvdWin.document.close();
	document.golos_form.submit();
}
var n=0;
function open_s(nm)
{
	if(n!=nm)
	{
	if(n!=0) close_s(n);
	document.getElementById(nm).style.display="inline";
	n=nm;
	}
	else close_s(nm);
}

function close_s(nm)
{
	document.getElementById(nm).style.display="none";
	n=0;
}
