var currentWindow;
var autoClose = true;
if (window.opera) autoClose = false; //O. bug

function popup(item,w,h)
{
	hw=h; ww=w;
	if ((currentWindow) && (autoClose)) currentWindow.close();
	var popupWindow = window.open("","IVSZgaleria","width="+ww+",height="+hw+",scrollbars=no,status=no,resizable=yes");
	if (autoClose) currentWindow = popupWindow;
	popupContent = '';
	popupContent += '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"';
	popupContent += '"http://www.w3.org/TR/html4/loose.dtd">';
	popupContent += '<html><head><title>Az év internetes kereskedője</title><meta http-equiv="imagetoolbar" content="no"/><link rel="stylesheet" type="text/css" href="./css/style.css"/></head>';
	popupContent += '<body class="previewImage" ><table width="100%" cellpadding="0" cellspacing="0" border="0"><tr><td valign="middle"><img src="'+item+'" height="'+h+'" width="'+w+'" alt="" border="0" onclick="javascript:window.close();"/></td></tr></table>';
	popupContent += '<script type="text/javascript">window.resizeTo('+ww+','+hw+');</script></body></html>';
	popupWindow.document.write(popupContent);
	popupWindow.document.close() 
	return false;
}

