function openImagePopup(image, w, h) {
	var fix = true;
	if(!w) {
		fix = false;
		w = 300;
	}
	if(!h) {
		fix = false;
		h = 300;
	}

	var img;
	if(typeof image != 'string' && image.href) img = image.href;
	else img = image;

	var s = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n';
	s += '<html xmlns="http://www.w3.org/1999/xhtml">\n';
	s += '<head></head><body style="margin:0;background-color:#000000;"><a href="javascript:window.close()"><img src="' + img + '" alt="" style="border:0;';
	if(fix) s += 'width:' + w + 'px;height:' + h + 'px';
	s += '"/></a></body></html>';
	var p = window.open('about:blank', '_blank', "width=" + w + ",height=" + h + ",screenX=1,screenY=1,status=0,resizable=" + (fix ? '0' : '1'));
	p.document.write(s);
	p.document.close();

	return false; // onclickk miatt.
}

