// JavaScript Document

//打开购物车
function openBrWindow(theURL) { //v2.0
	var myCart = window.open(theURL,"cart","top=0,left=0,width=550,height=600,scrollbars=auto");
	myCart.document.focus();
}
