/*****************************************************************************************************/
/*                                                                                                   */
/*                                     'PRODUCTS PANEL' CLASS                                        */          
/*                                                                                                   */
/*****************************************************************************************************/

function PRODUCTS_GINFO(parent){
	var JSObject = this;
	
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                           FUNCTION ADD ITEM                                       */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.add = function(id,quantity,warranty){
		//alert(LOCALPATH+"basket_add.php?"+'product_id='+id+'&'+'product_quantity='+quantity+'&'+'product_warranty='+warranty)
		www.post(LOCALPATH+"basket_add.php",
				 'product_id='+id+'&'+
				 'product_quantity='+quantity+'&'+
				 'product_warranty='+warranty, 
				 function(response) {
					//alert(response)
					document.location.href= LOCALPATH +"basket.php"; 
				 }
				 );	
	}
	
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                           FUNCTION GET WARRANTY                                   */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.getWarranty = function(warranty){
		if (document.getElementsByName(warranty)){
			for (var i=0; i<document.getElementsByName(warranty).length; i++){
				if (document.getElementsByName(warranty)[i].checked) return document.getElementsByName(warranty)[i].value;	
			}
		}
		
		return 0;
	}
	
	
	
	/*****************************************************************************************************/
	/*                                                                                                   */
	/*                                           FUNCTION UPDATE ITEM                                    */          
	/*                                                                                                   */
	/*****************************************************************************************************/
	this.update = function(id,quantity,warranty){
		www.post(LOCALPATH+"basket_add.php",
				 'product_id='+id+'&'+
				 'product_quantity='+quantity+'&'+
				 'product_warranty='+warranty, 
				 function(response) {
					//alert(response)
					document.location.href= LOCALPATH +"basket.php"; 
				 }
				 );	
	}
	
	
}