function cartAddItem(id) {

	var getCart		=	new XHConn();
	var cartArea	= 	findDOM('cartContainer');
	getCart.connect("ajaxAddCartItem.php", "POST", "&id="+id, writeCart);

}

function writeCart(oXML) {
	var cartArea			= 	findDOM('cartContainer');
	var firstItem			= 	findDOM('firstCartItem');
	cartArea.innerHTML		= 	oXML.responseText;

	if (firstItem.value=="TRUE") {
		//alert("The item you selected has been added to Your Shopping Cart.\n\nYour Shopping Cart can be found at the top left portion of the site. \n\nWhen you are finished shopping, click the CHECKOUT button to finalize the sale. \n\nThank you for shopping at Cotati Corner!");
	}
}


function smallCartSubmit(thisType) {
	var hiddenField 		=	findDOM('smallCartActionType');
	var thisForm			=	findDOM('smallCartForm');
	hiddenField.value 		=	thisType;
	thisForm.submit();
}

function viewLargeImage(filename) {

	window.open('viewLargeImage.php?file='+filename,'ViewLarge','location=0,status=0,scrollbars=0,width=700,height=600');

}