function cp(id)
{
	if (!document.getElementById(id))
	{
		return;
	}
	if (navigator.userAgent.indexOf("MSIE")!=-1 && navigator.userAgent.indexOf("Opera")==-1)
	{
		document.getElementById(id).createTextRange().execCommand('Copy'); 
	}
	else
	{
        	alert('Данная возможность в вашем браузере не поддерживается.');
		document.getElementById(id).focus();
		document.getElementById(id).select();
	}
}