function help(id,is_art)
{
	if(is_art=='art')
	{
		window.open('../../help_out.php?id=' + id, 'help','scrollbars, resizable,width=500,height=350');
	}else
	{
		window.open('help_out.php?id=' + id, 'help','scrollbars, resizable,width=500,height=350');
	}
}

function get_code()
{
	window.open('get_code_author.php', 'get_code','scrollbars, resizable,width=500,height=350');
}

function img_kls(id)
{
	window.open('adm_addfoto_kls.php?id=' + id, 'img_kls','scrollbars, resizable,width=500,height=500');
}

function img_konk(id)
{
	window.open('adm_foto_konk_addfoto.php?id=' + id, 'img_konk','scrollbars, resizable,width=500,height=500');
}

// цитирование в форуме
function cyt(id)
{
	var content;
	var name;
//	alert (document.getElementById(id + '_cont').innerText);
	content = document.getElementById(id + '_cont').innerText;
	name = document.getElementById(id + '_name').innerText;
	if(!name || !content)
	{
		content = document.getElementById(id + '_cont').textContent;
		name = document.getElementById(id + '_name').textContent;
	}
	content = '{QUOTE=' + name + '}\n' + content + '\n{/QUOTE}\n\r';
	document.guestform.txa.value = content;
	document.guestform.txa.focus();
}