﻿var AdwShow = true;
var AdwText = "Христос Воскресе!";
var AdwUrl = "/news_view.php?ID=36";

function topAdwRedirect(){
	document.location = AdwUrl;
}
function topAdwInite(){
	topAdw =  document.getElementById('top_add');
	topAdw.innerHTML =  '<div><a id="first">'+AdwText+'</a><a  id="second" href="javascript:topAdwHide()" onClick="topAdwHide()"><img src="/img/adwClose.jpg"></a></div>';
	if (AdwShow)topAdw.style.display = 'block';
	else topAdw.style.display = 'none';
}
function topAdwHide(){
	topAdw =  document.getElementById('top_add');
	topAdw.style.display = 'none';
}

//====================================
function newsCheckForm()
		{
			
				if (confirm("Желаете подписаться под этой новостью?")){
						return true;
				}
				else{
						return false;
				}
		}
