function aff_get_link(website_site_url, ref_id) {
  var url ;
  var camp ;
  var sec=aff_link_form.aff_category.options[aff_link_form.aff_category.selectedIndex].value;
  if (sec!="0") {
    url = website_site_url + 'products.php?category_id=' + sec + '&ref_id=' + ref_id ;
  }
  else {
    url = website_site_url + 'index.php?ref_id=' + ref_id ;
  }

  if (aff_link_form.campaign.options[aff_link_form.campaign.selectedIndex].value!=0) {
    camp=aff_link_form.campaign.options[aff_link_form.campaign.selectedIndex].value ;
    if (camp!="0") {
  	  url += '&campaign='+ camp ;
    }	
  }
  
  document.aff_link_form.link.value=url ;
}

function test_aff_link(website_site_url,ref_id) {
  var url ;
  var sec ;
  
  if (document.aff_link_form.link.value!="") {
    sec=aff_link_form.aff_category.options[aff_link_form.aff_category.selectedIndex].value;
    if (sec!="0") {
      url = website_site_url + 'products.php?category_id=' + sec + '&ref_id=' + ref_id ;
    }
    else {
      url = website_site_url + 'index.php?ref_id=' + ref_id ;
    }

   if (aff_link_form.campaign.options[aff_link_form.campaign.selectedIndex].value!="none") {
     camp = aff_link_form.campaign.options[aff_link_form.campaign.selectedIndex].value ;
     if (camp!="0") {
  	  url += '&campaign='+ camp ;
     }	 
   }

   window.open(url)
  } else {
    alert("Please select the page you want to link to.")
  }

}  
    