var e;
function pi(img, w, h)
{
	e = window.open('', 'pic', 'scrollbars=no,width=' + w + ',height=' + h);
	if (window.focus) { e.focus(); }

	e.document.open();
	e.document.write('<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	e.document.write('<img src=' + img + ' width=' + w + ' height=' + h + '><br>');
	e.document.close();
}

function basket(html, w, h)
{
	w = (w != 'undefinde') ? w : 600;
	h = (h != 'undefinde') ? h : 400;
	e = window.open(html, 'html', 'scrollbars=yes,width=' + w + ',height=' + h);
	if (window.focus) { e.focus(); }

	return false;
}

