function addToCart(type, id){
var req = new Subsys_JsHttpRequest_Js();

	req.onreadystatechange = function(){
		if (req.readyState == 4){
			ajaxError('');
		}
	}
	req.open('GET', 'ajax.cart.php?event=addToCart&type='+type+'&id='+id, true);
	req.send({});

}
