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 ph(html, w, h) {
	w = 700;
	h = 650;
	e = window.open(html, 'html', 'scrollbars=yes,width=' + w + ',height=' + h);
	if (window.focus) { e.focus(); }
}


