//PNG

function pngdisplay(image, width, height, iclass) {
	if (navigator.appName=='Microsoft Internet Explorer') { 
		document.write('<img src="images/i.gif" style="width: ' + width + '; height: ' + height + '; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=' + image + ', sizingMethod=scale)" class="' + iclass + '" border=0 />');
	} else {
		document.write('<img src="' + image + '" style="width: ' + width + '; height: ' + height + ';" class="' + iclass + '" />');
	}
}

function ShowPhoto(fid, fw, fh)
{
	var x=window.screen.width / 2 - (fw / 2);
	var y=window.screen.height / 2 - (fh / 2);	

	window.open("photo.php?fid="+fid,"Ôîòî","width="+fw+",height="+fh+",resizable=no,scrollbars=no,menubar=no,status=no,top="+y+",left="+x);
}