function showpicture(pildiurl) {
	var scrw = (screen.width - 100);
	var scrh = (screen.height - 200);
	var scrl = (screen.width - scrw) / 2;
	var scrt = (screen.height - scrh) / 2;
	myWindow = window.open("", "Pilt", "width="+scrw+",height="+scrh+",status=no,resizable=yes,top=50,left="+scrl+",scrollbars=yes");
	myWindow.document.write('<HTML><BODY topmargin="0" leftmargin="0">');
	myWindow.document.write('<TABLE border="0" width="100%" height="100%" cellspacing="0" cellpadding="0">');
	myWindow.document.write('<tr height="40"><td align="center" background="pildid_bg.jpg">');
	myWindow.document.write('<IMG src="pildid_top.jpg">');
	myWindow.document.write("</td></tr>");
	myWindow.document.write('<tr height="100%"><td align="center" valign="middle">');
	myWindow.document.write('<a href="javascript:window.close()" title="<- TAGASI (sulge aken)">');
	myWindow.document.write('<IMG style="border:0" src="' + pildiurl + '"></a>');
	myWindow.document.write("</td></tr></TABLE></BODY></HTML>");
	myWindow.document.close();
}

function showinfo(id) {
	document.getElementById('inf'+id).style.display = 'block';
	document.getElementById('link'+id).style.display = 'none';
}

function hideinfo(id) {
	document.getElementById('inf'+id).style.display = 'none';
	document.getElementById('link'+id).style.display = 'block';
}
