<!--

function feedback(city)
	{
	var w = 450;
	var h = 290;

	var x = (screen.width - w) / 2;
	var y = (screen.height - h) / 2;

	window.open('/send.php?'+city, 'myWin', 'width='+w+',height='+h+',top='+y+',left='+x);
	}

function buildings()
	{
	var curr = new Date(new Date() - new Date('01/01/2007'));
	var days = Math.round(curr.getTime() / 1000 / 60 / 60 / 24);

	document.write(14568 + days * 9);
	}

//-->