function buy_as_gift(prod_id) {
	 document.getElementById('product_id').value = prod_id;
   document.getElementById('is_gift').value = 'true';   
   document.getElementById('add_to_cart_frm').submit();
}

