if (document.getElementById)
{
	var a = document.getElementsByTagName('A');
	for (var i = 0; i < a.length; ++ i)
	{
		if (a[i].className == 'picture_link')
			a[i].onclick = show_picture;
	}
}

function show_picture()
{
	var t = "Záhony komplex gazdaságfejlesztési program";
	var u = this.href;
	var w = 320;
	var h = 320;
	if (u.match(/\?(\d+)x(\d+)$/))
	{
		w = RegExp.$1;
		h = RegExp.$2;
	}
	var x = (screen.availWidth-w)/2;
	var y = (screen.availHeight-h)/2;
	picwin = window.open("","picwin","width="+w+",height="+h+",left="+x+",top="+y);
	picwin.document.open();
	picwin.document.writeln('<html><head><title>'+t+'</title></head><body style="margin: 0; padding: 0; text-align: center;">');
	picwin.document.writeln('<img src="' + u + '" width="' + w + '" height="' + h + '" border="0" />');
	picwin.document.writeln('</body></html>');
	picwin.document.close();
	picwin.focus();

	return false;
}
