// JavaScript Document
	// cartWin is a global set in globals.js.
	function cartWindow()
	{	//	alert("cartwin1 =  "+cartWin)
      	if (cartWin == null || cartWin.closed) 
		{
      		// Here we know that the cart window doesn't exist, or has been closed, so we re-open it. 
			//blank.htm is just blank file with your sites background color.
      		cartWin = window.open("/blank.htm", "__cart__", "width=200,height=60,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no");
       		cartWin.focus();
 //		alert("cartwin2 =  "+cartWin)
		return true;
	  	} else 
		{
		//alert("cartwin3 =  "+cartWin)
		cartWin.focus();
      	// end add by JH
		}
	}