function getProductAllInfo(prd_id, pageId) {
                
  var h = new XmlHttp()
  var cust_gr_id = document.getElementById("customer_group_id");
  cust_group_id = cust_gr_id.options[cust_gr_id.options.selectedIndex].value

  var countr_id = document.getElementById("country_id");
  country_id = countr_id.options[countr_id.options.selectedIndex].value

  var subscrTerm = document.getElementById("subscription_term");
  subscr_term = subscrTerm.options[subscrTerm.options.selectedIndex].value

  var backIssue = document.getElementById("backIssue");

  var rightLinksTd = document.getElementById("rightLinksTd");

  renewal = 0;
  
  h.open('GET', host+'catalog/get_product_info/?httprequest=yes&cust_group_id='+cust_group_id+'&prd_id='+prd_id+'&country_id='+country_id+'&subscr_term='+subscr_term+'&backIssue='+backIssue.value, false);
    
  h.send(null);
  
  acclaimHost = 'http://www.freetradepubs.com/canada/';
   
  prices            = [];
  product_discount  = [];
  price_ids          = [];
  ed_versions        = [];
  subscr_types      = [];
  bissue_date        = [];
  bissue_descr      = [];
  backIssueCount    = 0;         
    
 //alert(h.responseText);	
  eval(h.responseText);

  try { eval(h.responseText) }
  catch (e) {}
          
  if (subscrTerm.value == 0)
  {
    html = "<a href='catalog/viewItem/?prdid="+prd_id+"&backIssue=0' class='red_link'>Current issue / subscription</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
    rightLinksTd.innerHTML = html;
  }
  else
  {
    if (backIssueCount > 0)
    {
      html = "<a href='catalog/viewItem/?prdid="+prd_id+"&backIssue=1' class='red_link'>Order Back Issue</a><br>";
    }
    else
    {
      html = "<a href='info/orderBackIssue/?prdId="+prd_id+"' class='red_link'>Request Back Issue</a><br>";
    }
    html += "<a href='info/requestMediaKit/?prdId="+prd_id+"' class='red_link'>Request Media Kit</a>";
    rightLinksTd.innerHTML = html;
  }
  
  if (subscrTerm.value == 0)
  {
    html = "<a href='catalog/viewItem/"+pageId+"&prdid="+prd_id+"&backIssue=0' class='red_link'>Current issue / subscription</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
    rightLinksTd.innerHTML = html;
  }
  else
  {
    if (backIssueCount > 0)
    {
      html = "<a href='catalog/viewItem/"+pageId+"&prdid="+prd_id+"&backIssue=1' class='red_link'>Order Back Issue</a><br>";
    }
    else
    {
      html = "<a href='info/orderBackIssue/"+pageId+"&prdId="+prd_id+"' class='red_link'>Request Back Issue</a><br>";
    }
    html += "<a href='info/requestMediaKit/"+pageId+"&prdId="+prd_id+"' class='red_link'>Request Media Kit</a>";
    rightLinksTd.innerHTML = html;
  }

  divContent = "";
  if (subscrTerm.value == 0)
  {
    divContent = "<table cellpadding='0' cellspacing='0' class='prodlist'><tr><td style='text-align:center;font-size:13px' class='red_txt_b'>Select Back Issue to Purchase<br><br></td></tr></table>";
  }
   
  divContent += "<table cellpadding='0' cellspacing='0' class='prodlist'><tr><th><b>Price (US)</b></th><th><b>Edition versions</b></th><th><b>Subscription type</b></th><th style='text-align:center'><b>Add to cart</b></th><th style='text-align:center'><b>Transfer</b></th></tr><tr><td colspan='5'><img src='/images/spacer.gif' border='0' width='1' height='10'></td></tr>";

  for (i=0; i<prices.length; i++)
  {
    price_td = prices[i];

    if (product_discount > 0)
    {
      price_td = "";
      new_price = prices[i]*(1-(product_discount/100));
      new_price = new_price.toFixed(2);
      price_td = "<font color='red'><s>$"+prices[i]+"</s></font><br>$"+new_price;
    }

    if (form_id > 0)
    {
      answered_id = 1;
      //if (answered_id > 0)
      //{               
        //divContent += "<tr><td class='astyle2'>$ "+price_td+"</td><td>"+ed_versions[i]+"</td><td>"+subscr_types[i]+"</td><td style='text-align:center'><a href='"+acclaimHost+'cart/addProductToCart/?id="+price_ids[i]+"&prd_id="+prd_id+"&renewaloption="+renewal+"'><img src='/images/ico_add_to_cart.gif' border='0' rel='nofollow'></a></td><td style='text-align:center'><a href='"+host+"transfers/magazineTransfer/"+pageId+"&prdid="+prd_id+"&id="+price_ids[i]+"'><img src='/images/icon_arrow.gif' border='0'></a></td></tr>";
      //}
      //else divContent += "<tr><td class='astyle2'>$ "+price_td+"</td><td id='question_forms'>"+ed_versions[i]+"</td><td>"+subscr_types[i]+"</td><td style='text-align:center'><a href="+'"'+"javascript:makeWindow('forms/show/"+pageId+"&id="+product_id+"&popup=1')"+'"'+"><img src='/images/ico_add_to_cart.gif' border='0' rel='nofollow'></a></td><td style='text-align:center'><a href='"+host+"transfers/magazineTransfer/"+pageId+"&prdid="+prd_id+"&id="+price_ids[i]+"'><img src='/images/icon_arrow.gif' border='0'></a></td></tr>"; 
      
      divContent += "<tr><td class='astyle2'>$ "+price_td+"</td><td id='question_forms'>"+ed_versions[i]+"</td><td>"+subscr_types[i]+"</td><td style='text-align:center'><a href="+'"'+"javascript:makeWindow('forms/show/"+pageId+"&id="+product_id+"&popup=1')"+'"'+" rel='nofollow'><img src='/images/ico_add_to_cart.gif' border='0'></a></td><td style='text-align:center'><a href='"+host+"transfers/magazineTransfer/"+pageId+"&prdid="+prd_id+"&id="+price_ids[i]+"'><img src='/images/icon_arrow.gif' border='0'></a></td></tr>"; 
    }
    else 
    {
		
      divContent += "<tr><td class='astyle2'>$ "+price_td+"</td><td>"+ed_versions[i]+"</td><td>"+subscr_types[i]+"</td><td style='text-align:center'><a href='"+acclaimHost+"cart/addProductToCart/?id="+price_ids[i]+"&prd_id="+prd_id+"&renewaloption="+renewal+"' rel='nofollow'><img src='/images/ico_add_to_cart.gif' border='0'></a></td><td style='text-align:center'><a href='"+host+"transfers/magazineTransfer/"+pageId+"&prdid="+prd_id+"&id="+price_ids[i]+"'><img src='/images/icon_arrow.gif' border='0'></a></td></tr>";
    }
      
    if (subscrTerm.value == 0 && subscr_types[i] == "Back Issue")
    {
      var obj_backIssueDesc = document.getElementById("tr_backIssueDesc");
      if (obj_backIssueDesc && bissue_descr[i]) obj_backIssueDesc.innerHTML = bissue_descr[i];          
    
      divContent += "<tr><td colspan='5'><table cellpadding='0' cellspacing='0' width='100%'><tr><td style='vertical-align:top'><b>Description:&nbsp;</b></td><td width='100%'>"+bissue_descr[i]+"</td></tr>";
      divContent += "<tr><td style='vertical-align:top'><b>Date:&nbsp;</b></td><td>"+bissue_date[i]+"</td></tr>";
      divContent += "<tr><td colspan='2'><br></td></tr></table></td></tr>";
    }
  }

  
  var prd_info_table = document.getElementById("product_info");
  prd_info_table.innerHTML = divContent+"</table>";

}
