function show_small_basket(){
	w=200;
	h=100;
	t=(window.screen.height-h)/2.5;
	l=(window.screen.width-w)/2.5;
	str_opt="top="+t+",left="+l+",toolbar=no, menubar=no, location=no, directories=no, channelmode=no, width="+w+", height="+h;
	win=open("", "small_basket", str_opt);
	win.focus();
}

function show_small_basket_2(href){
	w=200;
	h=100;
	t=(window.screen.height-h)/2.5;
	l=(window.screen.width-w)/2.5;
	str_opt="top="+t+",left="+l+",toolbar=no, menubar=no, location=no, directories=no, channelmode=no, width="+w+", height="+h;
	win=open(href, "small_basket", str_opt);
	win.focus();
	return false;
}

function show_basket(){
	if (window.opener){
		window.opener.location.href='/Client.php?go=basket&act=show';
		window.close();
	}
}
