<!--//
	function doSimple(url) {
    	var ajaxRequest = new AjaxRequest(url);
    	ajaxRequest.sendRequest();
  	}

	function doProduct(id) {
		document.getElementById('load' + id).innerHTML = "<img src=\"./images/loader.gif\" border=\"0\" weight=\"12\" height=\"12\" />";
  		qty = document.getElementById('qty' + id).value;
		doSimple('taco_product.php?p=' + id + '&q=' + qty);
  	}

	function doCart(row, id) {
	   	ans = confirm('Are you sure to delete this items ?');

    	if( ans )
			doSimple('taco_cart.php?r=' + row + '&p=' + id);
  	}

	function popWindows(link, width, height) {
		window.open(link,'','width=' + width +',height='+height+',toolbar=no,location=no,menubar=no,scrollbars=yes,status=no,resizable=yes');
	}
//-->