var timer;

function ShowPopup()
{
	var Pattern = "/bg$";
	var result = window.location.href.match(Pattern);
	if (result!=null)
	{
		Modalbox.show('<img src="/popup/images/christmas-cards1.jpg" border="0">', {title: "Весела Коледа",  height: 514, width: 724, afterHide: alt});
		timer = setTimeout(HidePopup,10000);
	}
}

function HidePopup()
{
	Modalbox.hide();
}

function alt()
{
	clearTimeout(timer);
}