function wnd_open(path, width, height, not_blank) {
	var wnd = window.open(path, not_blank?"window":"_blank", "width="+width+", height="+height+", toolbar=no, menubar=no, scrollbars=yes, status=no, resizable=yes");
	wnd.moveTo(10,30);
	wnd.focus();
	return false;
}

function wnd_basket(id) {
	return wnd_open("/catalog/basket.php?win=1&id="+id, 300, 110);
}

function wnd_close(delay) {
	setTimeout('window.close()', delay);
}