_uacct = "UA-1948083-1";
urchinTracker();

google_ad_client = "pub-3502954087980371";
google_ad_slot = "5953550387";
google_ad_width = 160;
google_ad_height = 600;

var popUpWin = 0;

window.onload = function()
{
	if(document.getElementById("header_image"))
		tick();
}

function tick()
{
	var hours, minutes, seconds, day, month, today, year;
	today = new Date();
	hour=today.getHours();
	minutes=today.getMinutes();
	seconds=today.getSeconds();
	year=today.getUTCFullYear();
	day=today.getDate();
	month=today.getMonth()+1;
	
	if (seconds < 10) {seconds="0"+seconds;}
	if (minutes < 10) {minutes="0"+minutes;}
	if (month < 10) {month="0"+month;}
	if (day < 10) {day="0"+day;}
	
	timeString = day + "." + month + "." + year + " " + hour + ":" + minutes + ":" + seconds;
 
	document.getElementById("header_image").innerHTML = timeString;
	window.setTimeout("tick();", 1000);
}

function ShowItem(nId, bSearch, strLang)
{
	if(popUpWin)
    	if(!popUpWin.closed) popUpWin.close();
		
	var strPath = "";
	
	if(!bSearch)
		strPath = "../";

	if(strLang)
		popUpWin = open(strPath + "../php/details.php?id=" + nId + "&lang=" + strLang, "ExTel", "toolbar = no, location = no, directories = no, status = no, menubar = no, scrollbars = no, resizable = no, copyhistory = no, width = 640, height = 640");
	else
  		popUpWin = open(strPath + "../php/image.php?id=" + nId, 'ExTel', 'toolbar = no, location = no, directories = no, status = no, menubar = no, scrollbars = no, resizable = no, copyhistory = no, width = 400, height = 400, innerWidth = 400, innerHeight = 400, dialog = no');
}