//Shawn Olson Affiliate Join Javascript
//Copyright 2003,2006 by Shawn Olson http://www.webonizer.com
//All Rights Reserved

function switchMember(form){
 if (form.theartist.value=='all')
  {form.member.disabled='disabled';
  form.member.style.color='gray';
  }
 if (form.theartist.value!='all')
  {form.member.disabled='';
  form.member.style.color='black';
  }


}



function makeAffiliate(){

affiliate = document.getElementById('affiliateCodeForm');
memberAd = '';

topicAd = '';
var member = affiliate.member.value;
var topic = affiliate.topic.value;
var siteName = SMO_SITE_NAME;
var theUrl = SMO_DOMAIN_NAME;

afid = affiliate.afid.value;
afidAd = "afid=" + afid;
if ((member != '') || (member != 'all')){ memberAd = "&author=" + member;}

if (topic != ''){ topicAd = "&topic=" + topic;}

codeWindow = window.open("", "code", "width=500, height=300");
codeWindow.document.write("<html><head><title>Affiliate Code</title></head><body><h4>Affiliate Code</h4><p>Copy the code below and paste is into your HTML</p><code style=\"color:green\">&lt;iframe style=&quot;width: 220px; height: 400px&quot; scrolling=&quot;yes&quot; src=&quot;http://"+theUrl+"/webonizer_core/affiliate.php?" + afidAd + memberAd + topicAd +"&quot;&gt;<br/> &lt;a href=&quot;http://"+theUrl+"&quot; target=&quot;smo&quot;&gt;<br/>&lt;img src=&quot;http://"+theUrl+"/webonizer_sitemedia/"+SMO_SITE_LOGO+"&quot; alt=&quot;"+siteName+" member&quot; class=&quot;affiliate&quot;/&gt;<br/> &lt;/a&gt;<br/>&lt;/iframe&gt;</code></body></html>");

}
