var aff_def_url = "slaffiliates.htm";
function generateAffiliateLink(url)
{
	var frm = document.forms["linkGenForm"];
 	if(!frm)
		return false;
	if(!url)
		url = aff_def_url;
	var path = document.location.href;
	url = path .substr(0, path.lastIndexOf("/") + 1) + url;
	var affiliateID = frm.affiliateID.value;
	var str = ""
	if (affiliateID !='undefined' && affiliateID !="") {
		str = "<a href=" + url + "?userid=94132773&afid="+affiliateID+" target='_top'>JOIN - Smart Link Shop Affiliate Program</a>"
        }
	frm.affiliateLink.value = str;
	return true;
}


function doCopy()
{
  try {
    var textCtrl  = document.forms["linkGenForm"].affiliateLink;
    textCtrl.createTextRange ().execCommand ("Copy");
  }
  catch(exception) {}
}