function wnd_open(path, width, height) {
	var wnd = window.open(path, "_blank", "width="+width+", height="+height+", toolbar=no, menubar=no, scrollbars=yes, status=no, resizable=yes");
	wnd.moveTo(10,30);
	return false;
}

function wnd_basket(id) {
	return wnd_open("basket.php?win=1&id="+id, 300, 110);
}

function wnd_close(delay) {
	setTimeout('window.close()', delay);
}
