function show_cart_window(cart_url, this_handler) 
{
	var x_offset = 0;
	var y_offset = 0;

	//card_width = (screen.width/2.1);
	//card_height = (screen.height/1.5);
	card_width = 750;
	card_height = 750;
	
	card_left = (screen.width-(card_width+75)) - x_offset;
	card_top = 55 + y_offset;

	//this_handler.href="javascript:void(0)";
	newWin = window.open(cart_url, 'show_cart', "width="+card_width+",height="+(screen.width/2.1)+",left="+card_left+",top="+card_top+",scrollbars=1,resizable=1,status=1,location=1,menubar=0,resizable=1,toolbar=0");
	newWin.focus();
}