Instructions on How to Place the Sign Up Form on Your
Transcription
Instructions on How to Place the Sign Up Form on Your
Instructions on How to Place the Sign Up Form on Your Affiliate Website Step 1 Copy the code of the form generated for the Affiliate Program and create a new page in Dreamweaver or any other program of your preference, and paste the code. Copy from Affiliate Panel and Paste it in Dream-Weaver or any other program of your preference as follow: Step 2 (Optional) You can modify the following fields: chan, data1, data2,data3 and data4 for tracking purposes. This is optional. (The Affiliate ID and Banner ID are Inserted automatically for tracking purposes in the fields: custom Affcode and b_, Do not modify these fields.) Example: <input type="hidden" name="chan" value="TEST" /> <input type="hidden" name="data1" value="Website1" /> <input type="hidden" name="data2" value="page2" /> <input type="hidden" name="data3" value="list1" /> <input type="hidden" name="data4" value="sublist2 /> Tips: How to insert the form in a PopUnder? Save the form in the root of your website, example: www.myweb.com/form.html , and insert the code below in the <head> section of your landing page for curadebt or in another page of your preference. <script> //specify page to pop-under var popunder="http://www.myweb.com/form.html" //specify popunder window features //set 1 to enable a particular feature, 0 to disable var winfeatures="width=650,height=510,scrollbars=0,resizable=0,toolbar=0,location=0,menubar=0,status=0,dire ctories=0" //Pop-under only once per browser session? (0=no, 1=yes) //Specifying 0 will cause popunder to load every time page is loaded var once_per_session=0 ///No editing beyond here required///// function get_cookie(Name) { var search = Name + "=" var returnvalue = ""; if (document.cookie.length > 0) { offset = document.cookie.indexOf(search) if (offset != -1) { // if cookie exists offset += search.length // set index of beginning of value end = document.cookie.indexOf(";", offset); // set index of end of cookie value if (end == -1) end = document.cookie.length; returnvalue=unescape(document.cookie.substring(offset, end)) } } return returnvalue; } function loadornot(){ if (get_cookie('popunder')==''){ loadpopunder() document.cookie="popunder=yes" } } function loadpopunder(){ win2=window.open(popunder,"",winfeatures) win2.blur() window.focus() } if (once_per_session==0) loadpopunder() else loadornot() </script>