/*---------------------------------------
* Function :	openFriendMailWindow
* Purpose  :	Открытие окна отправки ссылки на страницу другу
* Arguments:	news_id
* Return   :
\--------------------------------------*/
function openFriendMailWindow( news_id )
{
	window.open( "/friend_mail.php?news="+news_id, news_id, "height=200,width=400,top=100,left=100,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
};

/*---------------------------------------
* Function :	openPrintWin
* Purpose  :	Открытие окна для вывода новости на печать
* Arguments:	news_id - идентификатор новости
* Return   :
\--------------------------------------*/
function openPrintWin( news_id )
{
	window.open( "/news_print.php?news="+news_id, news_id, "height=500,width=740,top=50,left=50,toolbar=yes,location=no,status=no,menubar=yes,scrollbars=yes,resizable=no");
};

/*---------------------------------------
* Function :	openProfileWin
* Purpose  :	Открытие окна для управления профилем пользователя
* Arguments:	news_id - идентификатор новости
* Return   :
\--------------------------------------*/
function openPofileWin( subpath )
{
	window.open( "/profile/" + subpath, subpath, "height=350,width=410,top=50,left=50,toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no");
};

// Вкл/выкл DIV'а по ID
function vis(id) {
if (document.getElementById(id).style.display == "none") {document.getElementById(id).style.display = "block"} else {document.getElementById(id).style.display = "none"}
}
