CINXE.COM

R-TT Partnerprogramm - Beschreibung

<!DOCTYPE html> <html lang="de"> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width,initial-scale=1" /> <meta http-equiv="content-language" content="de" /> <link rel="stylesheet" type="text/css" href="/includes/de/style.css" /> <link rel="shortcut icon" href="/images/rtt.ico" /> <link rel="icon" type="image/png" href="/images/rtt.png" sizes="64x64"> <title>R-TT Partnerprogramm - Beschreibung</title> <meta name="keywords" content="Affiliate, Partnerprogramm, R-TT-Partner, Datenrettung, Wiederherstellung, Datentr盲gerabbild, Mail-Wiederherstellung, gel枚schte Festplatte" /> <meta name="Description" content="Gesch盲ftsbedingungen des R-TT-Partnerprogramms" /> <meta name="title" content="R-TT Partnerprogramm - Beschreibung" /> </head> <body> <script type="text/javascript" charset="utf-8"> // Generic routines function strTrim(str) { return str.replace(/^\s+|\s+$/gm,''); } // Single element class manipulations function _nodeGetClassPos(Node,className) { if (!Node||!Node.className) return -1;if ((!className)||(className.length<=0)) return 0; for(var s=0;true;) { var p=Node.className.indexOf(className,s);if (p<0) return -1; s=p+className.length; if ((p>0)&&(Node.className.charCodeAt(p-1)>32)) continue; if ((s<Node.className.length)&&(Node.className.charCodeAt(s)>32)) continue; return p; } return -1; } function nodeHasClass(Node,className) { return (_nodeGetClassPos(Node,className)>=0); } function nodeAddClass(Node,className) { if ( (!Node) || (!className) || (className.length<=0) || (nodeHasClass(Node,className)) ) return false; if ( (Node.className) && (Node.className.length>0) ) Node.className+=" "; Node.className+=className; return true; } function nodeDelClass(Node,className) { if ( (!Node) || (!Node.className) || (!className) || (className.length<=0) ) return false; var pos=_nodeGetClassPos(Node,className);if (pos<0) return false; var pos2=pos+className.length; if ((pos>0)&&(Node.className.charCodeAt(pos-1)<=32)) {pos--;} else if ((pos2<Node.className.length)&&(Node.className.charCodeAt(pos2)<=32)) {pos2++;} Node.className = Node.className.slice(0,pos) + Node.className.slice(pos2); return true; } function nodeSwitchClass(Node,className) { if ((!Node)||(!className)) return; if (nodeHasClass(Node,className)) { nodeDelClass(Node,className); } else { nodeAddClass(Node,className); } } // Multiple elements class manipulations function nodesHasClass(Nodes,className) { for(var i=0;i<Nodes.length;i++) {if (nodeHasClass(Nodes[i],className)) return true;} return false; } function nodesAddClass(Nodes,className) { for(var i=0;i<Nodes.length;i++) {nodeAddClass(Nodes[i],className);} } function nodesDelClass(Nodes,className) { for(var i=0;i<Nodes.length;i++) {nodeDelClass(Nodes[i],className);} } // Supplement search functions function _findBuild(Selector) { var Search = {Elem:'',Class:'',Type:''}; if (typeof Selector === 'string') Search.Elem=Selector; var pos=Search.Elem.indexOf('[type=');if (pos>=0) { var pos2=Search.Elem.lastIndexOf(']'); if (pos2>pos) { Search.Type=Search.Elem.slice(pos+6,pos2-pos-6); Search.Elem=Search.Elem.slice(0,pos)+Search.Elem.slice(pos2+1); } } pos=Search.Elem.indexOf('.');if (pos>=0) { Search.Class=Search.Elem.slice(pos+1); Search.Elem=Search.Elem.slice(0,pos); } Search.Elem=Search.Elem.toUpperCase(); return Search; } function _findDoesNodeMatch(Search,Node) { if ((!Node)||(Node.nodeType!=1)) return false; var bMatch=true; if ( (Search.Elem!="") && ((!Node.tagName)||(Node.tagName!=Search.Elem)) ) {bMatch=false;} if ( (Search.Type!="") && ((!Node.type)||(Node.type!=Search.Elem)) ) {bMatch=false;} if ( (Search.Class!="") && (!nodeHasClass(Node,Search.Class)) ) {bMatch=false;} return bMatch; } // Search for nodes, Selector = 'element.class[type=typename]', each part can be omited, i.e. '.class' or 'element[type=typename]' for example function nodeFindChildren(Node,Selector) { // Search for matched children nodes, recursively var res = [];if (!Node) return res; var Search = (typeof Selector === 'object')?Selector:_findBuild(Selector); var Children = Node.childNodes; for(var i=0;i<Children.length;i++) { if (Children[i].nodeType!=1) continue; if (_findDoesNodeMatch(Search,Children[i])) {res.push(Children[i]);} res=res.concat(nodeFindChildren(Children[i],Search)); } return res; } function nodeFindDirectChildren(Node,Selector) { // Search for matched children nodes, only children of this node var res = [];if (!Node) return res; var Search = _findBuild(Selector); var Children = Node.childNodes; for(var i=0;i<Children.length;i++) { if (Children[i].nodeType!=1) continue; if (_findDoesNodeMatch(Search,Children[i])) {res.push(Children[i]);} } return res; } function nodeFindParent(Node,Selector) { // Search for first matched parent node if (!Node) return null; var Search = _findBuild(Selector); for(var Res=Node.parentNode;Res;Res=Res.parentNode) { if (_findDoesNodeMatch(Search,Res)) return Res; } return null; } // Check if Node have specified Child on any level function hasSpecifiedChild(Node,Child) { if (!Node) return false; var Children = Node.childNodes; for(var i=0;i<Children.length;i++) { if (Children[i].nodeType!=1) continue; if (Children[i] === Child) return true; if (hasSpecifiedChild(Children[i],Child)) return true; } return false; } </script><script type="text/javascript" charset="utf-8"> function onImgBigClose(Node) { if (Node) Node.parentNode.removeChild(Node); } function onImgBigShow(Node) { if (!Node) return; var strImgSrc=Node.getAttribute("big-src"); if (!strImgSrc) { strImgSrc=Node.getAttribute("src");if (!strImgSrc) return; if (nodeHasClass(Node,"big")) { var p=strImgSrc.lastIndexOf(".");if (p<=0) return; strImgSrc=strImgSrc.slice(0,p)+"_big"+strImgSrc.slice(p); } } var strImgAlt=Node.getAttribute("title"); if (!strImgAlt) {strImgAlt=Node.getAttribute("alt");} var ImgModal=document.createElement("div");if (!ImgModal) return; ImgModal.className="img-big-modal"; ImgModal.id="img-big-modal"; var ImgClose=document.createElement("span"); var ImgImg=document.createElement("img"); var ImgCaption=document.createElement("div"); if (!ImgClose || !ImgImg || !ImgCaption) return; ImgClose.innerHTML="&times;"; ImgClose.onclick = function(){onImgBigClose(this.parentNode);} ImgModal.appendChild(ImgClose); ImgImg.setAttribute("src",strImgSrc); ImgModal.appendChild(ImgImg); if (strImgAlt) {ImgCaption.innerText=strImgAlt;} ImgModal.appendChild(ImgCaption); if (ImgModal.addEventListener) { ImgModal.addEventListener('mouseup',function(e) { var Trg=e.target;if (!Trg) return; var ImgModal=document.getElementById('img-big-modal');if (!ImgModal) return; if (Trg === ImgModal) onImgBigClose(ImgModal); }); } var InsertBefore=Node.nextSibling; if (InsertBefore) {Node.parentNode.insertBefore(ImgModal,InsertBefore);} else {Node.parentNode.appendChild(ImgModal);} } function onImgBigShowInit() { var aImgBig = nodeFindChildren(document,'img.big'); aImgBig = aImgBig.concat(nodeFindChildren(document,'img.rsz')); for(var i=0;i<aImgBig.length;i++) {aImgBig[i].onclick = function(){onImgBigShow(this);};} if (document.addEventListener) { document.addEventListener('keyup',function(e) { if (e.keyCode != 27) return; onImgBigClose(document.getElementById('img-big-modal')); }); } } </script> <div id="root"> <div> <div style="overflow-x:hidden;"> <div id="hdr-wrapper" class="hdr-wrapper"> <div id="hdr-hdr" class="section hdr-hdr"> <div class="hdr-logo"> <a href="https://www.r-tt.com/de/" title="R-Tools Technology Inc."> <img src="/images/nav/rtt-logo.png" alt="R-Tools Technology Inc." width="225" height="85" /> </a> </div> <div class="hdr-search-container"> <form class="hdr-search-form" name="search_form" action="/scripts/search" method="post" onsubmit="return doSearch(document.search_form)"> <input type="hidden" name="config" value="../../../r-tt/private/config/ssserver.de" /> <div class="hdr-search-row"> <span class="hdr-search-icon" onclick="doSearch(document.search_form)"></span> <input type="text" name="QUERY" class="hdr-search-input" value="Suche..." onfocus="onSearchFocus(document.search_form)" /> </div> </form> </div> <script type="text/javascript" charset="utf-8"> function onSearchFocus(F) { if (F.QUERY.value == "Suche...") { F.QUERY.value=""; F.QUERY.style.color = "#404040"; } return true; } function doSearch(F) { if (F.QUERY.value == "Suche...") {F.QUERY.value="";} if (F.QUERY.value == "") {alert("Bitte geben Sie ein Suchmuster an");F.QUERY.focus();return false;} return true; } </script> <div class="hdr-info"> <div> Wir bem眉hen uns, schnelle, effiziente und erschwingliche Software-L枚sungen anzubieten, die neue Standards in der Software-Industrie setzen k枚nnen. </div> </div> <div class="clearwoflex"></div> <div class="hdr-langs"> <div class="langs-block"> <div class="langs-btn"> <div class="langs-cur-flag"> <img width="51" height="29" alt="" src="/images/lang/de.png"/> </div> <span class="langs-sel"></span> </div> <div class="langs-list"> <a href="https://www.r-tt.com/Affiliate_Program.shtml"> <img src="/images/lang/en.png" width="51" height="29" alt="" /> <span>English</span> </a> <a href="https://www.r-tt.com/fr/Affiliate_Program.shtml"> <img src="/images/lang/fr.png" width="51" height="29" alt="" /> <span>Fran&ccedil;ais</span> </a> <a href="https://www.r-tt.com/it/Affiliate_Program.shtml"> <img src="/images/lang/it.png" width="51" height="29" alt="" /> <span>Italiano</span> </a> <a href="https://www.r-tt.com/es/Affiliate_Program.shtml"> <img src="/images/lang/es.png" width="51" height="29" alt="" /> <span>Espa&ntilde;ol</span> </a> <a href="https://www.r-tt.com/pt/Affiliate_Program.shtml"> <img src="/images/lang/pt.png" width="51" height="29" alt="" /> <span>Portugu&ecirc;s</span> </a> <a href="https://www.r-tt.com/nl/Affiliate_Program.shtml"> <img src="/images/lang/nl.png" width="51" height="29" alt="" /> <span>Nederlands</span> </a> <a href="https://www.r-tt.com/pl/Affiliate_Program.shtml"> <img src="/images/lang/pl.png" width="51" height="29" alt="" /> <span>Polski</span> </a> <a href="https://www.r-tt.com/ja/Affiliate_Program.shtml"> <img src="/images/lang/ja.png" width="51" height="29" alt="" /> <span>&#26085;&#26412;&#35486;</span> </a> <a href="https://www.r-tt.com/ko/Affiliate_Program.shtml"> <img src="/images/lang/ko.png" width="51" height="29" alt="" /> <span>&#54620;&#44397;&#50612;</span> </a> <a href="https://www.r-tt.com/zhcn/Affiliate_Program.shtml"> <img src="/images/lang/zhcn.png" width="51" height="29" alt="" /> <span>&#31616;&#20307;&#20013;&#25991;</span> </a> <a href="https://www.r-tt.com/zhhk/Affiliate_Program.shtml"> <img src="/images/lang/zhhk.png" width="51" height="29" alt="" /> <span>&#31616;&#20307;&#20013;&#25991;</span> </a> <a href="https://www.r-tt.com/ru/Affiliate_Program.shtml"> <img src="/images/lang/ru.png" width="51" height="29" alt="" /> <span>&#1056;&#1091;&#1089;&#1089;&#1082;&#1080;&#1081;</span> </a> </div> </div> </div> <div class="hdr-menu"> <div class="menu-container" id="menu-container"> <span class="menu-button"> <span class="menu-button-open"></span> <span class="menu-button-close"></span> </span> <a href="https://www.r-tt.com/de/" class="menu-logo" title="R-Tools Technology Inc."> <img src="/images/nav/rtt-logo.png" alt="R-Tools Technology Inc." width="225" height="85" /> </a> <ul class="menu-main" id="menu-main"> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> PRODUKTE <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-title"> FREEWARE </div> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-undelete.com/de/">R-Undelete Home</a> </li> <li> <a href="https://www.r-undelete.com/de/kostenlose-wiederherstellung-geloschter-fotos/">R-Photo</a> </li> <li> <a href="https://www.r-studio.com/de/free-linux-recovery/">R-Linux</a> </li> <li> <a href="https://www.r-wipe.com/de/#lite">R-Wipe &amp; Clean Lite</a> </li> </ul> </div> </div> <div class="menu-dd-cont"> <div class="menu-dd-title"> F脺R KOMMERZIELLEN GEBRAUCH </div> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-studio.com/de/Data_Recovery_Technician.shtml"> R-Studio Technician f眉r Dienstleistungen im Bereich Datenwiederherstellung </a> </li> <li> <a href="https://www.drive-image.com/de/Drive_Image_Licensing.shtml#commercial"> R-Drive Image f眉r Sicherungs- und Bereitstellungsdienste </a> </li> </ul> </div> </div> <div class="menu-dd-cont"> <div class="menu-dd-title"> F脺R PERS脰NLICHEN UND KOMMERZIELLEN GEBRAUCH </div> <div class="menu-dd-items"> <div class="menu-dd-cols"> <div class="menu-dd-col-title"> <a href="https://www.r-studio.com/de/data-recovery-software/"> Professionelle Datenwiederherstellung: </a> </div> <div class="menu-dd-col-ul"><ul class="menu-dd-ul"> <li> <a href="https://www.r-studio.com/de/">R-Studio for Windows</a> </li> <li> <a href="https://www.r-studio.com/de/data_recovery_macintosh/">R-Studio for Mac</a> </li> <li> <a href="https://www.r-studio.com/de/data_recovery_linux/">R-Studio for Linux</a> </li> </ul></div> <div class="clearthis"></div> </div> <div class="menu-dd-cols"> <div class="menu-dd-col-title"> Sicherung und Systemwiederherstellung: </div> <div class="menu-dd-col-ul"><ul class="menu-dd-ul"> <li> <a href="https://www.drive-image.com/de/">R-Drive Image</a> </li> <li> <a href="https://www.drive-image.com/de/Drive_Image_Licensing.shtml#technician">R-Drive Image Technician</a> </li> </ul></div> <div class="clearthis"></div> </div> <div class="menu-dd-cols"> <div class="menu-dd-col-title"> Datenschutz und Sicherheit f眉r den PC: </div> <div class="menu-dd-col-ul"><ul class="menu-dd-ul"> <li> <a href="https://www.r-wipe.com/de/">R-Wipe &amp; Clean</a> </li> <li> <a href="https://www.r-wipe.com/de/#mac">R-Wipe &amp; Clean for Mac</a> </li> </ul></div> <div class="clearthis"></div> </div> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> <span class="alt-tr-ru-1">ONLINE KAUFEN</span> <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-tt.com/de/VolumeLicensing.shtml" class="alt-tr-ru-1">Angebot</a> </li> <li> <a href="https://www.r-tt.com/de/GetInvoice.shtml">Rechnung erhalten</a> </li> <li> <a href="https://www.r-tt.com/de/FAQ.shtml">Verkaufs-FAQ</a> </li> <li> <a href="https://www.r-tt.com/de/BuyOnLine.shtml">Verkaufsrichtlinien</a> </li> </ul> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> SUPPORT <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-tt.com/de/TechnicalSupport.shtml">Technischer Support</a> </li> <li> <a href="https://www.r-tt.com/de/PurchasingRequest.shtml">Kundendienst</a> </li> <li> <a href="https://www.r-studio.com/de/File_Recovery_FAQ.shtml">FAQ</a> </li> <li> <a href="https://www.r-tt.com/de/Knowledge-Base.html">Wissensdatenbank</a> </li> <li> <a rel="noopener" target="_blank" href="https://forum.r-tt.com/">R-TT Forum</a> </li> </ul> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-left"></span> DISTRIBUTION <span class="menu-icon-right"></span> </span> <div class="menu-dd"> <div class="menu-dd-cont"> <div class="menu-dd-items"> <ul class="menu-dd-ul"> <li> <a href="https://www.r-tt.com/de/Affiliate_Program.shtml">Partnerprogramm</a> </li> <li> <a href="https://www.r-tt.com/de/Resellers.shtml">Verkaufspartner</a> </li> <li> <a href="https://www.r-tt.com/de/Distribution.shtml">Regionale Vertriebspartner</a> </li> <li> <a target="_blank" rel="noopener" href="https://secure.r-tt.com/distributor/login/">Anmelden</a> </li> </ul> </div> </div> </div> </div></li> <li class="menu-item"><div class="menu-item-wrap"> <span class="menu-title"> <span class="menu-icon-spare"></span> <a href="https://secure.r-tt.com/de/UserConsole.shtml">MEINE BESTELLUNG</a> </span> </div></li> </ul> </div> </div> <div class="clearwoflex"></div> </div> </div> <div> <div class="row-blue"><div class="section nav-tabs nav-tabs-login"> <div class="nav-tabs-body"> <a class="nav-tabs-affiliate tab-active" href="https://www.r-tt.com/de/Affiliate_Program.shtml"><span>Partnerprogramm</span></a> <a class="nav-tabs-reseller" href="https://www.r-tt.com/de/Resellers.shtml"><span>Verkaufspartner</span></a> <a class="nav-tabs-distributor" href="https://www.r-tt.com/de/Distribution.shtml"><span>Regionale Vertriebspartner</span></a> </div> <div class="nav-tabs-btn"><div><div> <a rel="noopener" target="_blank" href="https://secure.r-tt.com/distributor/login/">Anmelden</a> </div></div></div> </div></div> <div class="row-section row-bottom-half"><div class="section"> <p class="bt"> Das Partnerprogramm von R-Tools Technology generiert zahlreiche Verk盲ufe unserer Top-Produkte. Daf眉r haben wir eigens auf eine schnelle Konteneinrichtung, einfache Anwendung und intuitive Berichtinstrumente geachtet. Damit stehen Ihnen die folgenden Vorteile zur Verf眉gung: </p> <ul class="orange orange-compact oh3"> <li>Kostenloses und schnelles Setup.</li> <li>25-30% Provision f眉r jedes verkaufte Produkt.</li> <li>24/7 Zugriff auf Ihr Partnerkonto und Statistik Ihrer Partneraktivit盲ten.</li> <li>Flexible Zahlungsverfahren:</li> </ul> <div class="afl-pay-methods gt"> <div> <span>脺berweisen einer Gutschrift an Ihr PayPal-Konto.</span> <div class="explain"> <span class="explain-marker">?</span> <div class="explain-content">f眉r Provisionszahlungen in H枚he von 25 USD und mehr</div> </div> </div> <div> <span>Senden eines Schecks in U.S. Dollar.</span> <div class="explain"> <span class="explain-marker">?</span> <div class="explain-content">f眉r Provisionszahlungen in H枚he von 100 USD und mehr</div> </div> </div> </div> <p class="bt"> Mit unserem Partnerprogramm m枚chten wir Ihnen die Mittel an die Hand geben, um Verk盲ufe anzukurbeln und die Leistung Ihrer Webseite zu 眉berwachen. Wir haben versucht, das Programm so intuitiv wie m枚glich zu gestalten und gleichzeitig unsere Partner vor Betrug und Missbrauch zu sch眉tzen. Bei Fragen zur Einrichtung oder zum Betrieb unseres Partnerkontos kontaktieren Sie uns gern jederzeit. </p> <p class="bt nobr"> In den Reitern unten zeigen wir Ihnen, wie Sie Ihre neue oder bereits bestehende Seite mit Provisionslinks zu unseren bestverkauften Produkten ausstatten. </p> </div></div> <div class="row-section"><div class="section"><div class="expand-title oh3 expand-active" id="setup"> EINRICHTUNG PARTNER-KONTO </div></div></div> <div class="expand-body expand-active" id="setup-e"> <div class="row-gray row-section"><div class="section"> <form class="stdform form-wide" name="AffiliateForm" method="post" action="/cgi-bin/Distribution" onsubmit="return onSubmitForm(document.AffiliateForm)" novalidate> <input type="hidden" name="IS_AFFILIATE" value="1" /> <div class="col2-left"> <div class="form-title-first"> ANTRAGSFORMULAR </div> <div class="fph"> <input type="text" name="CUST_NAME" required /> <label value="Vor- und Familienname" placeholder="Vor- und Familienname *"></label> </div> <div class="fph"> <input type="text" name="CUST_COMPANY" required /> <label value="Firma"></label> </div> <div class="fph"> <input type="text" name="CUST_EMAIL" required /> <label value="E-Mail-Adresse" placeholder="E-Mail-Adresse *"></label> </div> <div class="fph-margin"> <select required="" name="CUST_COUNTRY"> <option value="">Land *</option> <option value="United States">United States <option value="Canada">Canada <option disabled>----</option> <option value="Afghanistan">Afghanistan <option value="Aland Islands">Aland Islands <option value="Albania">Albania <option value="Algeria">Algeria <option value="American Samoa">American Samoa <option value="Andorra">Andorra <option value="Angola">Angola <option value="Anguilla">Anguilla <option value="Antarctica">Antarctica <option value="Antigua and Barbuda">Antigua and Barbuda <option value="Argentina">Argentina <option value="Armenia">Armenia <option value="Aruba">Aruba <option value="Australia">Australia <option value="Austria">Austria <option value="Azerbaijan">Azerbaijan <option value="Bahamas">Bahamas <option value="Bahrain">Bahrain <option value="Bangladesh">Bangladesh <option value="Barbados">Barbados <option value="Belarus">Belarus <option value="Belgium">Belgium <option value="Belize">Belize <option value="Benin">Benin <option value="Bermuda">Bermuda <option value="Bhutan">Bhutan <option value="Bolivia, Plurinational State of">Bolivia, Plurinational State of <option value="Bonaire, Sint Eustatius and Saba">Bonaire, Sint Eustatius and Saba <option value="Bosnia and Herzegovina">Bosnia and Herzegovina <option value="Botswana">Botswana <option value="Bouvet Island">Bouvet Island <option value="Brazil">Brazil <option value="British Indian Ocean Territory">British Indian Ocean Territory <option value="Brunei Darussalam">Brunei Darussalam <option value="Bulgaria">Bulgaria <option value="Burkina Faso">Burkina Faso <option value="Burundi">Burundi <option value="Cambodia">Cambodia <option value="Cameroon">Cameroon <option value="Cape Verde">Cape Verde <option value="Cayman Islands">Cayman Islands <option value="Chad">Chad <option value="Chile">Chile <option value="China">China <option value="Christmas Island">Christmas Island <option value="Cocos (Keeling) Islands">Cocos (Keeling) Islands <option value="Colombia">Colombia <option value="Comoros">Comoros <option value="Congo">Congo <option value="Cook Islands">Cook Islands <option value="Costa Rica">Costa Rica <option value="Cote d'Ivoire">Cote d'Ivoire <option value="Croatia">Croatia <option value="Curacao">Curacao <option value="Cyprus">Cyprus <option value="Czech Republic">Czech Republic <option value="Denmark">Denmark <option value="Djibouti">Djibouti <option value="Dominica">Dominica <option value="Dominican Republic">Dominican Republic <option value="Ecuador">Ecuador <option value="Egypt">Egypt <option value="El Salvador">El Salvador <option value="Equatorial Guinea">Equatorial Guinea <option value="Eritrea">Eritrea <option value="Estonia">Estonia <option value="Ethiopia">Ethiopia <option value="Falkland Islands (Malvinas)">Falkland Islands (Malvinas) <option value="Faroe Islands">Faroe Islands <option value="Fiji">Fiji <option value="Finland">Finland <option value="France">France <option value="French Guiana">French Guiana <option value="French Polynesia">French Polynesia <option value="French Southern Territories">French Southern Territories <option value="Gabon">Gabon <option value="Gambia">Gambia <option value="Georgia">Georgia <option value="Germany">Germany <option value="Ghana">Ghana <option value="Gibraltar">Gibraltar <option value="Greece">Greece <option value="Greenland">Greenland <option value="Grenada">Grenada <option value="Guadeloupe">Guadeloupe <option value="Guam">Guam <option value="Guatemala">Guatemala <option value="Guernsey">Guernsey <option value="Guinea">Guinea <option value="Guinea-Bissau">Guinea-Bissau <option value="Guyana">Guyana <option value="Haiti">Haiti <option value="Heard Island and McDonald Islands">Heard Island and McDonald Islands <option value="Holy See (Vatican City State)">Holy See (Vatican City State) <option value="Honduras">Honduras <option value="Hong Kong">Hong Kong <option value="Hungary">Hungary <option value="Iceland">Iceland <option value="India">India <option value="Indonesia">Indonesia <option value="Iraq">Iraq <option value="Ireland">Ireland <option value="Isle of Man">Isle of Man <option value="Israel">Israel <option value="Italy">Italy <option value="Jamaica">Jamaica <option value="Japan">Japan <option value="Jersey">Jersey <option value="Jordan">Jordan <option value="Kazakhstan">Kazakhstan <option value="Kenya">Kenya <option value="Kiribati">Kiribati <option value="Kuwait">Kuwait <option value="Kyrgyzstan">Kyrgyzstan <option value="Lao People's Democratic Republic">Lao People's Democratic Republic <option value="Latvia">Latvia <option value="Lebanon">Lebanon <option value="Lesotho">Lesotho <option value="Liberia">Liberia <option value="Libya">Libya <option value="Liechtenstein">Liechtenstein <option value="Lithuania">Lithuania <option value="Luxembourg">Luxembourg <option value="Macao">Macao <option value="Macedonia, The Former Yugoslav Republic of">Macedonia, The Former Yugoslav Republic of <option value="Madagascar">Madagascar <option value="Malawi">Malawi <option value="Malaysia">Malaysia <option value="Maldives">Maldives <option value="Mali">Mali <option value="Malta">Malta <option value="Marshall Islands">Marshall Islands <option value="Martinique">Martinique <option value="Mauritania">Mauritania <option value="Mauritius">Mauritius <option value="Mayotte">Mayotte <option value="Mexico">Mexico <option value="Micronesia, Federated States of">Micronesia, Federated States of <option value="Moldova, Republic of">Moldova, Republic of <option value="Monaco">Monaco <option value="Mongolia">Mongolia <option value="Montenegro">Montenegro <option value="Montserrat">Montserrat <option value="Morocco">Morocco <option value="Mozambique">Mozambique <option value="Myanmar">Myanmar <option value="Namibia">Namibia <option value="Nauru">Nauru <option value="Nepal">Nepal <option value="Netherlands">Netherlands <option value="New Caledonia">New Caledonia <option value="New Zealand">New Zealand <option value="Nicaragua">Nicaragua <option value="Niger">Niger <option value="Nigeria">Nigeria <option value="Niue">Niue <option value="Norfolk Island">Norfolk Island <option value="Northern Mariana Islands">Northern Mariana Islands <option value="Norway">Norway <option value="Oman">Oman <option value="Pakistan">Pakistan <option value="Palau">Palau <option value="Palestinian Territory">Palestinian Territory <option value="Panama">Panama <option value="Papua New Guinea">Papua New Guinea <option value="Paraguay">Paraguay <option value="Peru">Peru <option value="Philippines">Philippines <option value="Pitcairn">Pitcairn <option value="Poland">Poland <option value="Portugal">Portugal <option value="Puerto Rico">Puerto Rico <option value="Qatar">Qatar <option value="Reunion">Reunion <option value="Romania">Romania <option value="Russian Federation">Russian Federation <option value="Rwanda">Rwanda <option value="Saint Barthelemy">Saint Barthelemy <option value="Saint Helena, Ascension and Tristan da Cunha">Saint Helena, Ascension and Tristan da Cunha <option value="Saint Kitts and Nevis">Saint Kitts and Nevis <option value="Saint Lucia">Saint Lucia <option value="Saint Martin (French part)">Saint Martin (French part) <option value="Saint Pierre and Miquelon">Saint Pierre and Miquelon <option value="Saint Vincent and the Grenadines">Saint Vincent and the Grenadines <option value="Samoa">Samoa <option value="San Marino">San Marino <option value="Sao Tome and Principe">Sao Tome and Principe <option value="Saudi Arabia">Saudi Arabia <option value="Senegal">Senegal <option value="Serbia">Serbia <option value="Seychelles">Seychelles <option value="Sierra Leone">Sierra Leone <option value="Singapore">Singapore <option value="Sint Maarten (Dutch part)">Sint Maarten (Dutch part) <option value="Slovakia">Slovakia <option value="Slovenia">Slovenia <option value="Solomon Islands">Solomon Islands <option value="South Africa">South Africa <option value="South Georgia and the South Sandwich Islands">South Georgia and the South Sandwich Islands <option value="South Korea">South Korea <option value="Spain">Spain <option value="Sri Lanka">Sri Lanka <option value="Suriname">Suriname <option value="Svalbard and Jan Mayen">Svalbard and Jan Mayen <option value="Swaziland">Swaziland <option value="Sweden">Sweden <option value="Switzerland">Switzerland <option value="Taiwan">Taiwan <option value="Tajikistan">Tajikistan <option value="Tanzania, United Republic of">Tanzania, United Republic of <option value="Thailand">Thailand <option value="Timor-Leste">Timor-Leste <option value="Togo">Togo <option value="Tokelau">Tokelau <option value="Tonga">Tonga <option value="Trinidad and Tobago">Trinidad and Tobago <option value="Tunisia">Tunisia <option value="Turkey">Turkey <option value="Turkmenistan">Turkmenistan <option value="Turks and Caicos Islands">Turks and Caicos Islands <option value="Tuvalu">Tuvalu <option value="Uganda">Uganda <option value="Ukraine">Ukraine <option value="United Arab Emirates">United Arab Emirates <option value="United Kingdom">United Kingdom <option value="United States Minor Outlying Islands">United States Minor Outlying Islands <option value="Uruguay">Uruguay <option value="Uzbekistan">Uzbekistan <option value="Vanuatu">Vanuatu <option value="Venezuela, Bolivarian Republic of">Venezuela, Bolivarian Republic of <option value="Viet Nam">Viet Nam <option value="Virgin Islands, British">Virgin Islands, British <option value="Virgin Islands, U.S.">Virgin Islands, U.S. <option value="Wallis and Futuna">Wallis and Futuna <option value="Western Sahara">Western Sahara <option value="Zambia">Zambia <option value="Zimbabwe">Zimbabwe </select> </div> <div class="fph"> <input type="text" name="CUST_STATE" required /> <label value="Staat/Provinz"></label> </div> <div class="fph"> <input type="text" name="CUST_ZIP" required /> <label value="Postleitzahl" placeholder="Postleitzahl *"></label> </div> <div class="fph"> <input type="text" name="CUST_CITY" required /> <label value="Stadt" placeholder="Stadt *"></label> </div> <div class="fph"> <textarea name="CUST_ADDRESS" rows="3" required></textarea> <label value="Postadresse" placeholder="Postadresse *"></label> </div> <div class="fph"> <input type="text" name="CUST_PHONE" required /> <label value="Telefonnummer" placeholder="Telefonnummer *"></label> </div> <div class="fph"> <input type="text" name="CUST_WEBSITE" required /> <label value="Website" placeholder="Website *"></label> </div> <div class="form-memo gs"> <span class="form-wrong-info">* Erforderliche Felder</span> </div> </div> <div class="col2-right"> <div class="form-title-first"> ZAHLUNGSINFORMATIONEN </div> <div class="fph"> <input type="text" name="PAY_CARD_ACCT" required /> <label value="An mein PayPal-Konto zahlen"></label> </div> <div class="fph"> <input type="text" name="PAY_CHECKS" required /> <label value="Schecks ausstellen an"></label> </div> <div class="fph"> <input type="text" name="PAY_BUSINESS_NUM" required /> <label value="Gesch盲fts-ID" placeholder="Gesch盲fts-ID *"></label> </div> <div class="form-memo gs"> * Erforderlich f眉r alle kanadischen Unternehmen. Bitte geben Sie Ihre neunstellige Gesch盲ftsnummer ohne Bindestriche ein. </div> <br /> <p class="bt"> Nach der Beendigung der Registrierung werden Sie eine E-Mail mit Ihrem Benutzernamen und Passwort erhalten, mit denen Sie sich bei Ihrem Partnerkonto anmelden k枚nnen. Sollten Sie sich innerhalb von 10 Tagen nach der Registrierung bei Ihrem neuen Konto nicht anmelden, werden Sie keine k眉nftigen E-Mails mehr erhalten und Ihr Konto wird gel枚scht. </p> <p class="bt nobr"> <b>Beachten Sie bitte</b>, dass Ihr Partnerschaftsantrag und Status im Partnerschaftsprogramm aus einem beliebigen der folgenden Gr眉nde ausgesetzt oder beendet werden <i>k枚nnen</i>: </p> <ul class="std bt"> <li>Web-Seiten enthalten/f枚rdern Pornografie, Gl眉cksspiele, Diskriminierung oder andere gesetzeswidrige Aktivit盲ten.</li> <li>Versto脽 gegen Schutz- und Urheberrechte.</li> <li>Verletzung des Partnervertrags.</li> <li>Unangemessene Werbung (Falsche Angaben, irref眉hrende Hyperlinks).</li> <li>Spamming (Serien-E-Mails, Massenversenden von Nachrichten in Newsgroups usw.)</li> </ul> </div> <div class="clearthis"></div> <div class="form-title"> VEREINBARUNG F脺R DAS PARTNERPROGRAMM </div> <div class="fph-margin"> <textarea rows=10 readonly> TO BE AN AFFILIATE UNDER R-TOOLS TECHNOLOGY ADVERTISEMENT PROGRAM, YOU MUST AGREE TO THE TERMS OF THE FOLLOWING AFFILIATE PROGRAM AGREEMENT. PLEASE READ THE AGREEMENT CAREFULLY BEFORE REGISTERING FOR THE PROGRAM. BY PARTICIPATING IN THE PROGRAM, YOU AGREE TO BE BOUND BY ALL THE TERMS OF THIS AGREEMENT. This Affiliate Program Agreement is a legally binding agreement between you ("Affiliate", "you," "your") and R-Tools Technology Inc. ("RTT," "we," our"). 1. DEFINITIONS Party or Parties -- the Affiliate and/or RTT, as the context so requires. Fees -- the amount of commission the Affiliate can earn pursuant to the terms of this Agreement. Affiliate Link -- a text link or a graphic link (banner, skyscraper and etc.) that contains a unique code to track referrals generated by the Affiliate. Customer -- the Affiliate's customer or end-user may have an interest in purchasing RTT's software products. Intellectual Property -- Trade marks, copyrights, copyright registrations and applications, and other proprietary rights, including without limitation, domain name registrations, site content, and site design with respect to a Party's Site(s), and proprietary technology currently used or which may be developed and/or used by it in the future. Program -- RTT's affiliate program pursuant to which the Affiliate promotes and advertises products and services offered by RTT in return for referral compensation. Site -- a World Wide Web site. 2. GRANT We grant you a nonexclusive, revocable right to use the Affiliate Links for which we grant express permission, solely for the purpose of identifying your site as the Program participant and to assist in generating RTT sales. You may not modify the Affiliate Links, or any other of our images, in any way. We reserve all of our rights in the graphic image and text, any other images, our trade names and trademarks, and all other intellectual property rights. This grant shall be immediately revoked upon termination of this Agreement. RTT may also revoke this grant at any time by giving you written notice. 3. AFFILIATE APPLICATION In order to be considered for approval as the Affiliate in the Program you must complete and submit an affiliate application form. We will review your application and notify you of our decision to accept or reject the same, which decision shall be made in our sole discretion. Our decision will be communicated to you via e-mail. If your affiliate application is accepted by RTT, you will be able to participate in the Program subject to the terms and conditions of this Agreement. By applying for and becoming the Affiliate in the Program, you agree to be bound by all of the terms and conditions of this Agreement. 4.AFFILIATE RESPONSIBILITIES 4.1 You agree that you will display the Affiliate Links on your Site, and otherwise advertise RTT products and services using that are provided to you or approved by RTT. You may not alter or modify the graphic images or ad banners at any time without RTT's prior written consent. You agree to promptly implement any request by RTT to remove, alter, or modify any Affiliate Links. RTT has the right to remove your Site from the Program if you do not post at least one Affiliate Link on your Site within 30 days after RTT notifies you of the approval of your Affiliate Application. 4.2 You agree to provide your Site visitors and users with a disclaimer saying that you use affiliate links and have affiliate associations with RTT products and services. 4.3 You are solely responsible for the development, operation and maintenance of your Site and for all materials and content that appear thereon, notwithstanding the appearance of marks or other identifying information relating to RTT that appear thereon. You shall operate and maintain your Site in compliance with all applicable laws, rules, regulations and ordinances and in good working order in accordance with industry best practices. You shall ensure that the materials and content posted on your Site are accurate and proper, that your Site does not: (a) violate any laws, rules or regulations; (b) violate or infringe upon the rights of any third party including, without limitation, copyright, patent trademark, trade secret or other proprietary rights or right of publicity or privacy; (c) advocate discrimination based on age, disability, nationality, race, religion, sex or sexual orientation; (d) be lewd, pornographic, sexually explicit, or obscene; or (e) contain gambling, spamming, viruses, Trojan horses, worms, time bombs, cancel bots or contain other similar harmful or deleterious program routines. 4.4 RTT disclaims all liability for the development, operation, maintenance and content of Affiliate's Site. RTT reserves the right, in its sole discretion, to periodically monitor Affiliate's Site to ensure Affiliate's compliance with this Agreement. Any such monitoring by RTT will not, and shall not be deemed to, constitute a waiver or any of RTT's right's or Advertiser's obligations in this agreement. If in our sole discretion, conclude that you have violated or threatened to violate the terms of this Agreement, we may (without limiting any other rights or remedies available to us) withhold any referral fees otherwise payable to you under this Agreement and/or immediately terminate this Agreement. 4.5 An Affiliate Link may not be setup for a one time transaction processed by Affiliate or by a third party on his behalf for a one time discount. 5. SALES PROCESSING We process sales of our products and services to customers who follow your Affiliate Links to our site. We reserve the right to reject sales that do not comply with any requirements that we may establish and alter from time to time. We will be responsible for all aspects of sales processing and fulfillment. Among other things, we will prepare sales forms, process payments, cancellations, and returns, and handle customer service. We will track sales made to customers who purchase RTT products and services by following Affiliate Links to our site and will make available to you reports summarizing this sales activity. RTT may alter the form, content, and frequency of the reports from time to time without prior notice to you. 6.FEES 6.1. RTT agrees to pay you a fee (or referral fees) at least equal to 25% of all arrivals from RTT's products and services sold in transactions resulting directly from the Affiliate Link not including all taxes, shipping and handling charges, gift wrapping and other value-added service charges, returns and chargebacks. 6.2. RTT agrees to pay you referral fees on a monthly basis. Approximately 30 days following the end of each calendar month, we will pay you referral fees according to the "preferred payment method" that you select. The payment of referral fees may be withheld by RTT for a reasonable period of time to ensure that the correct amount is to be paid after clearing suspicious payments and/or making any adjustments that may be required, including, but not limited to, adjustments for returns, refunds or chargebacks. 6.3. You can choose any from the following preferred payment methods: - Sending a cheque in U.S. Dollars to your postal address* - Payment to your Paypal account.** - A combination of described above methods. * cheques are paid for commission totaling 100 USD and more. ** payments to Paypal for commission totaling 25 USD and more. 6.4. If the fees payable to you for any calendar month are less than $25, we may hold payment until the total amount due is at least $25 or (if earlier) until this Agreement is terminated. If a sale that generated a referral fee is returned by the customer (e.g. if the customer initiates a chargeback or receives a refund), we will deduct the corresponding referral fee from your account balance. You may have a negative balance if your account is debited in this way, and you do not have an adequate account balance to cover these debits. Upon RTT request you must immediately remit a payment to RTT in an amount sufficient to bring your account to a zero balance. You may make payments hereunder via check, wire transfer, or certain credit cards over the Web. 6.5. In case of one time transaction mentioned in clause 4.5. of this agreement, the referral fees for this transaction are void and are not payable to Affiliate. 7. PERSONAL INFORMATION You hereby certify to RTT that you are not a minor (i.e. if you are an individual, you represent and warrant that you were at least 18 years of age on the effective date of this Agreement). For purposes of identification, payment, billing and marketing, you must provide RTT with accurate, complete, and updated information required by the Program, including a valid email address and all applicable payment data (e.g. a mailing/postal address or Paypal account depending upon your choice of "preferred payment method"). RTT may require a copy of your identification before making changes to the payment information or registration data on the Affiliate account. If RTT determines that any information provided by Affiliate is not true and complete RTT may immediately terminate Affiliate's participation under this Agreement. 8. REPRESENTATIONS AND WARRANTIES (This clause is not applicable to Affiliates who are natural persons as opposed to corporations or other legal entities) RTT and Affiliate each represent and warrant to each other that throughout the term of this Agreement: (a) It is duly organized, validly existing and in good standing; (b) It has the full right, power and authority to enter into and perform this Agreement; (c) This Agreement has been duly authorized, executed and delivered and constitutes a legal, valid and binding obligation of such Party, enforceable against such Party in accordance with its terms, except as such enforcement may be limited by bankruptcy, insolvency, receivership, reorganization or other similar laws affecting the enforcement of creditors' rights generally and by general principles of equity; (d) No consent, approval or authorization from any third party is required in connection with the execution, delivery and performance of this Agreement, except such as have been obtained are in full force and effect; and (e) The execution, delivery and performance of this Agreement by such Party will not constitute a violation of any law, rule, regulation court order or ruling applicable to such Party. 9. WARRANTY DISCLAIMER RTT MAKES NO WARRANTIES, REPRESENTATIONS, GUARANTEES, OR CONDITIONS WITH REGARD TO THE PRODUCTS SOLD ON RTT WEB SITE OR THE OPERATION AND MAINTENANCE OF RTT WEB SITE, WHETHER EXPRESS OR IMPLIED, ARISING BY LAW OR OTHERWISE, INCLUDING WITHOUT LIMITATION ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT OR ANY IMPLIED WARRANTY ARISING FROM COURSE OF PERFORMANCE, COURSE OF DEALING, OR USAGE OF TRADE. IN PARTICULAR, RTT MAKES NO REPRESENTATION THAT THE OPERATION OF RTT WEB SITE WILL BE UNINTERRUPTED OR ERROR-FREE. 10. LIMITATION OF DAMAGES RTT WILL HAVE NO LIABILITY FOR ANY INDIRECT, INCIDENTAL, SPECIAL, PUNITIVE, OR CONSEQUENTIAL DAMAGES OR ANY LOSS OF REVENUE OR PROFITS ARISING UNDER OR WITH RESPECT TO THIS AGREEMENT OR THE AFFILIATE PROGRAM, EVEN IF RTT WAS ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. FURTHER, RTT'S AGGREGATE LIABILITY ARISING UNDER OR WITH RESPECT TO THIS AGREEMENT OR THE AFFILIATE PROGRAM WILL IN NO EVENT EXCEED THE TOTAL FEES PAID OR PAYABLE BY RTT TO THE AFFILIATE UNDER THIS AGREEMENT DURING THE PROCEEDING 12 MONTH PERIOD PRIOR TO THE DATE SUCH LIABILITY AROSE. 11. INDEMNIFICATION The Affiliate will indemnify, defend and hold harmless RTT and its officers, employees against and from all Losses that result or arise from (a) the development, operation, maintenance or content of Affiliate's Site; (b) Affiliate's breach of any representation, warranty, covenant or agreement made by Affiliate herein; (c) Affiliate's failure to comply with applicable law; or (d) any actual or alleged wrongful act of the Affiliate. 12. TERMINATION Either Party may terminate this Agreement at any time, with or without cause, by giving the other party written notice of termination. Upon the termination of this Agreement for any reason, you will immediately cease use of, and remove from your site, all Affiliate Links, and all RTT's trademarks, trade dress, and logos, and all other materials provided by or on behalf of us to you pursuant hereto or in connection with the Program. You are eligible to earn the fees only on our sales that occur during force of the Agreement, and the fees earned through the date of termination will remain payable only if the related sales are not canceled or returned. Upon termination of this Agreement for any reason, the obligations of Sections 2,4,8,9,10 and 11 shall survive the termination of this Agreement. 13. MISCELLANEOUS 13.1 Independent Contractors. RTT and Affiliate are independent contractors and nothing in this Agreement is intended to or will create any form of partnership, joint venture, agency, franchise, sales representative, or employment relationship. 13.2 Severability. The terms and conditions of this Agreement are severable. If any term or condition of this Agreement is deemed illegal or unenforceable under any rule of law, all other terms will remain in force. Further, the term or condition held to be illegal or unenforceable will remain in effect as far as possible in accordance with the intention of the Parties. 13.3 Modification. RTT may modify any of the terms and conditions contained in this Agreement, or change or modify the terms of payment procedures at any time within its sole discretion. RTT will provide notice of such change to the Affiliate via e- mail, and the Affiliate's sole recourse if it finds such change unacceptable is to terminate this Agreement. Affiliate's continued participation in the Program following RTT's sending of such e-mail will constitute Affiliate's agreement to the modification or change. 13.4 Taxes. The Parties will indemnify and hold each other harmless from all local, state and federal taxes or similar assessments or charges (including any interest or penalties imposed thereon) arising out of or related to this Agreement, for which such indemnifying Party is primarily responsible and to which the other Party would not be subject but for the performance of this Agreement, other than taxes based on the net income of such Party. 13.5 Governing Law. This Agreement shall be governed by and construed in accordance with the laws of the Province of Ontario and the federal laws of Canada applicable therein and each of the parties hereto agrees irrevocably to conform to the non-exclusive jurisdiction of the Courts of such Province. The Parties agree that the foregoing shall preclude the jurisdiction and application of any other forum and law. 13.6 Assignment. The Affiliate may not assign any of its rights or delegate any of its obligations under this Agreement, by operation of law or otherwise, without RTT's prior written consent. Subject to that restriction, this Agreement will be binding on, inure to the benefit of, and enforceable against the parties and their respective successors and assigns. 13.7 Waiver. RTT's failure to enforce strict performance of any provision of this Agreement will not constitute a waiver of its right to subsequently enforce such provision or any other provision of this Agreement. 14. ENTIRE AGREEMENT This Agreement represents the complete agreement and understanding between the Parties and supersedes any other oral or written communications or understandings between the Parties regarding the subject matter hereof. No amendment or modification to this Agreement will be binding upon RTT unless agreed to by an authorized representative of RTT. </textarea> </div> <div class="afl-agree bt"> <div class="form-round-wrong"> <input type="checkbox" name="AFL_CONFIRMED" value="1"> ICH STIMME ALLEN BEDINGUNGEN DER AFFILIATE-VEREINBARUNG ZU </div> </div> <div class="btn-center"> <input class="btn-orange-big" type="submit" value="Absenden"/> </div> </form> </div></div> </div> <div class="row-section"><div class="section"><div class="expand-title oh3" id="links"> PARTNER-LINKS </div></div></div> <div class="expand-body" id="links-e"> <div class="row-gray row-section"><div class="section"> <p class="bt"> Partner-Links zu neuen oder bestehenden Seiten hinzuf眉gen </p> <p> Sobald Ihr Partnerkonto eingerichtet ist, k枚nnen Sie damit beginnen, Content zu erstellen oder Ihre bestehende Seite mit Partnerlinks aufzuf眉llen. Bevor Sie beginnen, vergewissern Sie sich, dass Sie unsere inhaltlichen Richtlinien unten zur Kenntnis genommen haben. </p> <p class="bt"> Inhaltliche Richtlinien </p> <p> Originelle, informative und technisch richtige Inhalte zu den Funktionen unserer Software oder zu IT-Branche zeigen die beste Performance. Dennoch besteht keine Themenbindung f眉r Ihre Webseiteninhalte, abgesehen von Verst枚脽en, die speziell in der Liste der Vereinbarung zum Partnerprogramm aufgef眉hrt sind. </p> <p> Wir stellen eine Reihe von n眉tzlichen und umfassenden technischen Artikeln, Berichten, Anleitungen und Komplettl枚sungen bereit, die Sie individuell f眉r Ihre Webseite oder Blogeintr盲ge anpassen k枚nnen. Beim Einsatz unserer Inhalte legen wir nahe, Ihren eigenen Stil und Ihre Einsch盲tzung zu dem Thema einzubringen, um die Texte zu ihren eigenen zu machen. Textanpassung (z.B. maschinelle Paraphrase) wird dagegen als Spam angesehen und ist gem盲脽 der Vereinbarung zum Partnerprogramm untersagt. Eine solche Anpassung schadet nicht nur der Suchmaschinenplatzierung Ihrer Partner-Seite, sie kann auch das Ranking der Originalinhalte besch盲digen. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/Blog_Page.png" alt="Beispiel f眉r Links in einem Blog-Artikel" height="366" width="531"/> <div>Beispiel f眉r Links in einem Blog-Artikel</div> </div> <p> Sobald Ihre Seite oder Ihr Post fertiggestellt sind, k枚nnen Partnerlinks hinzugef眉gt werden. Dabei kommt es darauf an, dass die Links korrekt aufgebaut sind, sodass wir Sie als Mittler korrekt zuordnen, Ihre Leistung verfolgen und Sie f眉r Ihre Verk盲ufe entlohnen k枚nnen. </p> <p> Zum Erstellen eines Partnerlinks loggen Sie sich in Ihrem Partnerkonto ein und w盲hlen Sie die Seite <i>Links and Graphics</i> (Links und Grafiken). Hier haben wir eine Reihe von hochaufl枚senden Bannern, Bildern und Text-Links f眉r die Benutzung auf Ihrer Seite bereitgestellt. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/AP_04.png" alt="Die Seite Links und Grafiken (Links und Grafiken)" height="260" width="466"/> <div>Die Seite <i>Links and Graphics</i> (Links und Grafiken)</div> </div> <p> Auf der Seite <i>Links and Graphics</i> (Links und Grafiken) finden Sie eine Reihe von Kopiervorlagen von Code-Schnipseln f眉r Ihre Homepage oder Ihre Posts sowie eine entsprechende Vorschau. Der Code wurde bereits anhand Ihrer individuellen <b>Partner-ID</b> erstellt. Im Beispiel-Screenshot lautet die Partner-ID &quot;AAAAA&quot;. Lassen Sie diesen Teils des Codes unver盲ndert. Die Partner-ID bleibt bestehen. 脺ber Sie k枚nnen Besucher, die von Ihrer Seite kommen, Ihnen zugeordnet werden. </p> <p> Jeder Link verf眉gt 眉ber eine <b>Link-ID</b>. Die Link-ID folgt direkt auf die Partner-ID und lautet im Beispiel-Screenshot &quot;000&quot;. Im Gegensatz zur Partner-ID sollte die Link-ID f眉r jeden Link angepasst werden. Es steht Ihnen frei, sich selbst bis zu 1.000 unterschiedliche Link-IDs zuzuweisen (000 bis 999). Anhand der Link-ID k枚nnen Sie die Reichweite jedes Ihrer Links nachvollziehen. In Ihrem Statistikbericht haben wir Ihre Link-IDs integriert, sodass Sie 眉berpr眉fen k枚nnen, welche Links die meisten Klicks, Downloads und K盲ufe generieren. Weisen Sie beim Aufbau Ihrer Link-Struktur unterschiedliche Link-IDs zu, je nach dem, auf welcher Seite der Link erscheint, wo der Link auf der Seite erscheint etc. Durch Zuweisen unterschiedlicher Link-IDs holen Sie das Meiste aus den Werten, die wir Ihnen zur Verf眉gung stellen. </p> <p> Partner-Links k枚nnen auch mit einem <b>Download Prefix</b> ausgestatten werden. Im Beispiel-Screenshot ist es als &quot;SEPL&quot; angezeigt und erscheint direkt vor der Partner-ID. So steht Ihren Besuchern ein bequemer Link zur Verf眉gung, mit dem sie unsere Software direkt herunterladen k枚nnen, w盲hrend Ihnen dies angerechnet wird. </p> <p> Zus盲tzlich zu den Text-Links k枚nnen Sie auch mithilfe unserer Banner und anderer Promo-Grafiken Links generieren. Grafische Links und Banner k枚nnen Besucher auf unsere Webseite oder zu direkten Downloads weiterleiten. </p> <p> Die Zahlen unten zeigen all diese Funktionen an. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/Blog_Page_01.png" alt="Mehrere Links im Blog-Artikel" height="366" width="531"/> <div>Text-Links</div> </div> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/Blog_Page_02.png" alt="Mehrere Links im Blog-Artikel" height="316" width="533"/> <div>Grafische Links</div> </div> <p class="bt"> Richtlinien f眉r Partner-Links </p> <p> Bitte beachten Sie, dass auf einer Webseite NICHT mehr als 1-2 Links zu unseren Seiten platziert sein sollten. Befinden sich zu viele Verweislinks auf einer Seite, k枚nnten diese von Suchmaschinen als Spam identifiziert werden. Im Beispiel oben finden sich zwei Partner-Links auf einer Seite. Dabei verweist allerdings der eine auf www.r-studio.com, der andere auf www.r-tt.com. </p> <p> Jede Seite, die Partnerlinks enth盲lt, muss freigegeben werden. Der Freigabevorgang f眉r einzelne Seiten verl盲uft bedeutend schneller als die anf盲ngliche Antragsfreigabe. </p> <p> Melden Sie sich in Ihrem Partner-Konto an und w盲hlen Sie das Formular <i>Add Web Page</i> (Webseite hinzuf眉gen). Geben Sie die Webseiten-URL ein und senden Sie sie an uns. Unser Partnerprogrammadministrator wird die Seite auf 脺bereinstimmung mit unseren Inhalten und die Einhaltung der Richtlinie f眉r Partnerlinks hin untersuchen. Sobald die Seite freigegeben ist, werden daf眉r Statistiken erhoben. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/AP_05.png" alt="Die Seite Add Web Page (Webseite hinzuf眉gen)" height="124" width="541"/> <div>Die Seite <i>Add Web Page</i> (Webseite hinzuf眉gen)</div> </div> <p> Beachten Sie, dass Statistiken f眉r Links auf Seiten mit dem Status &quot;Abgelehnten&quot; nicht ber眉cksichtigt werden und vom Partnersystem ausgeschlossen sind. Statistiken werden von Seiten mit dem Status &quot;Offen&quot; erfasst und bei Best盲tigung auf Ihr Konto angerechnet. </p> </div></div> </div> <div class="row-section"><div class="section"><div class="expand-title oh3" id="stat"> AFFILIATE-STATISTIK &amp; ZAHLUNG </div></div></div> <div class="expand-body" id="stat-e"> <div class="row-gray row-section"><div class="section"> <p class="bt"> Statistiken Partner-Programm </p> <p> F眉r jeden unserer Partner stellen wir eine Auswahl an umfassenden Statistik- und Bericht-Tools bereit. Darin liegt eine der gro脽en St盲rken unseres Partnerprogramms. Viele unserer Partner setzen diese vielseitigen Tool erfolgreich ein, um die Leistung ihrer Partner-Links zu maximieren und gr枚脽ere Gewinne zu erzielen. Um Ihre Statistiken einzusehen, gehen Sie auf die Seite <i>Statistiken</i>. Die Werte werden t盲glich aktualisiert. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/AP_09.png" alt="Statistik-Seite" height="308" width="614"/> <div>Die <i>Statistiken</i>-Seite</div> </div> <p> Das Formular oben auf der <i>Statistiken</i>-Seite zeigt den Erfassungszeitraum f眉r die Daten unten an. Geben Sie hier einen Zeitraum &quot;von/bis&quot; an oder w盲hlen Sie einen vorgegebenen Intervall (Letztes Jahr, Letzter Monat, Letzte Woche, Die letzten 2 Tage, Gestern). </p> <p> Jede Link-ID wird separat in der URL-ID-Spalte aufgef眉hrt. Die Link-ID ist eine einmalig vergebene dreistellige Zahl (000 bis 999), die Sie beim Aufbau eines Links zugewiesen haben. Das Verhalten jedes Besuchers wir separat anhand der Link-ID erfasst. Sie k枚nnen einsehen, wie viele einmalige Besucher auf den Link geklickt haben (Hits), wie viele Seiten der Besucher angesehen hat und wie viele Verk盲ufe oder Downloads der Link generiert hat. </p> <p> Aus diesen Berichten k枚nnen Sie ersehen, welche Links die beste Performance bringen. </p> <p> Im Beispiel-Screenshot sehen Sie, dass die Link-ID 014 mehr Gesamtgewinne einbringt als die 眉brigen Links. Link-ID 011 dagegen bringt die h枚chsten Gewinne pro Klick. Das bedeutet, dass die Link-ID 014 mehr Traffic und Gewinne einbringt, Link-ID 011 aber eine h枚here Rendite generiert. </p> <p> Durch die Nutzung von individuellen Link-IDs auf Ihrer Webseite k枚nnen Sie Ihre Leistung auswerten und Ihre Content-Strategie entsprechend entwickeln. Experimentieren Sie mit unterschiedlichen Arten von Links an unterschiedlichen Orten, um die besten Ergebnisse zu erzielen. </p> <p class="bt"> Geld von R-TT erhalten </p> <p> Die Seite <i>Verkaufsbericht</i> zeigt die allgemeinen Erl枚se Ihres Partner-Programms an. Im <i>Verkaufsbericht</i> werden Verkaufsstatistiken, Erstattungen und R眉ckbuchungen f眉r die gesamte Programmdauer oder f眉r einen ausgew盲hlten Zeitraum angezeigt. </p> <p> Ein Verkauf wird registriert, sobald ein Besucher von Ihrer Seite ein Produkt erwirbt. Zur Ermittlung Ihres Gesamtauszahlungsbetrags wird die Anzahl aller Verk盲ufe nach Produkt addiert und mit dem Einzelverkaufspreis jedes Produkts multipliziert. </p> <p> Eine Erstattung findet statt, wenn R-TT einen Kaufpreis erstattet. Unsere Erstattungsrichtlinie finden Sie unter https://www.r-tt.com/Purchase.shtml. Erstattungen werden von der Gesamtauszahlungssumme in USD abgezogen. </p> <p> Unter einer R眉ckbuchung wird eine Beanstandung des Kreditkarteninhabers gegen die Abbuchung beim Kartenaussteller verstanden, wonach die Transaktion r眉ckg盲ngig gemacht wird. Dies entspricht einer Erstattung und f眉hrt zum Abzug von der Auszahlungssumme im USD. </p> <p> Die final von uns kalkulierte Auszahlungssumme in USD ist abz眉glich Ihrer Erstattungen in USD und R眉ckbuchungen in USD. </p> <p> Die Verkaufsdaten sind nach Produkten angeordnet. Die Gesamtverk盲ufe f眉r einen Berichtzeitraum setzen sich zusammen aus der Summe der Verkaufswerte abz眉glich der Erstattungen und R眉ckbuchungen. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/AP_07.png" alt="Verkaufsbericht Partnerprogramm" height="213" width="612"/> <div>Verkaufsbericht Partnerprogramm</div> </div> <p> Der Bericht zum <i>Kontenguthaben</i> zeigt die Berechnungen zu Ihrer monatlichen Auszahlungssumme an. Wie Sie im unteren Beispiel sehen, berechnet sich die Related-Sales-Zahl (USD) aus der Gesamtberechnungssumme in Ihrem Verkaufsbericht. Diese Zahl wird mit Ihrem aktuellen Partnersatz multipliziert, um daraus Ihr Entgelt zu bestimmen. </p> <div class="afl-img gs"> <img class="big" src="/Articles/Affiliate_Program/AP_08.png" alt="Kontoguthaben Partnerprogramm" height="163" width="554"/> <div>Kontoguthaben Partnerprogramm</div> </div> <p> Die ausstehende Gesamtzahlungssumme wird von R-TT automatisch zu Beginn jeden Monats ausgezahlt. </p> </div></div> </div> <div class="row-blue row-section footer-articles"><div class="section"> <div class="articles-items" id="articles-cols"> <div class="bottom-title">Datenrettungsartikel</div> <ul class="bottom-col-left"> <li><a href="https://www.r-studio.com/de/leitfaden-zur-datenwiederherstellung.html">Leitfaden zur Datenwiederherstellung</a></li> <li><a href="https://www.r-studio.com/de/Warum_RStudio.shtml">Dateiwiederherstellungssoftware. Warum R-Studio?</a></li> <li><a href="https://www.r-studio.com/de/computer-forensik-und-datenwiederherstellungs-dienstleister.html">R-Studio f眉r Computer-Forensik und Datenwiederherstellungs-Dienstleister</a></li> <li><a href="https://www.r-tt.com/r-studioreview_toptenreviews/">R-STUDIO Review on TopTenReviews</a></li> <li><a href="https://www.r-studio.com/de/wiederherstellung-dateien-SSD-speichergeraten.html">Besonderheiten der Dateiwiederherstellung f眉r SSD-Ger盲te</a></li> <li><a href="https://www.r-studio.com/de/wiederherstellen-daten-NVMe-geraten.html">Wiederherstellen von Daten von NVMe-Ger盲ten</a></li> <li><a href="https://www.r-studio.com/de/erfolgsaussichten-typischen-datenwiederherstellungsfallen.html">Vorab-Einsch盲tzung der Erfolgsaussichten bei typischen Datenwiederherstellungsf盲llen</a></li> <li><a href="https://www.r-studio.com/de/wiederherstellung-uberschriebener-daten.html">Wiederherstellung 眉berschriebener Daten</a></li> <li><a href="https://www.r-studio.com/de/Notfall_Dateiwiederherstellung.shtml">Notfall-Dateiwiederherstellung mit R-Studio Emergency</a></li> <li><a href="https://www.r-studio.com/de/Darstellung_der_RAID_Wiederherstellung.shtml">Darstellung der RAID-Wiederherstellung</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-nicht-funktionsfahigen-computer.html">R-Studio: Datenwiederherstellung von einem nicht funktionsf盲higen Computer</a></li> <li><a href="https://www.r-studio.com/de/Dateiwiederherstellung_von_einem_Computer_der_nicht_hochfahrt.shtml">Dateiwiederherstellung von einem Computer, der nicht hochf盲hrt</a></li> <li><a href="https://www.r-studio.com/de/Laufwerke_vor_der_Dateiwiederherstellung_klonen.shtml">Laufwerke vor der Dateiwiederherstellung klonen</a></li> <li><a href="https://www.r-studio.com/de/HD-Videowiederherstellung-SD-Karten.html">HD-Videowiederherstellung von SD-Karten</a></li> <li><a href="https://www.r-studio.com/de/dateiwiederherstellung-nichtbootfahigen-Mac.html">Dateiwiederherstellung von einem nicht bootf盲higen Mac-Computer</a></li> <li><a href="https://www.r-studio.com/de/beste-dateien-mac-systemfestplatte-wiederherzustellen.html">Der beste Weg, um Dateien von einer Mac-Systemfestplatte wiederherzustellen</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-verschlusselten-linux-festplatte.html">Datenwiederherstellung von einer verschl眉sselten Linux-Festplatte nach einem Systemabsturz</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-Apple-DMG-dateien.html">Datenwiederherstellung von Apple Disk Images (.DMG-Dateien)</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-nach-neuinstallation-Windows.html">Dateiwiederherstellung nach Neuinstallation von Windows</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-uber-netzwerk.html">R-Studio: Datenwiederherstellung 眉ber Netzwerk</a></li> <li><a href="https://www.r-studio.com/de/R-Studio-pakets-einer-unternehmensnetzwerkumgebung.html">Verwendung des R-Studio Network-Pakets</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-formatierten-NTFS-festplatte.html">Datenwiederherstellung von einer neu formatierten NTFS-Festplatte </a></li> <li><a href="https://www.r-studio.com/de/datenrettung-von-einer-ReFS-Festplatte.html">Datenrettung von einer ReFS-Festplatte</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-formatierten-exFAT-festplatte.html">Datenwiederherstellung von einer neu formatierten exFAT/FAT-Festplatte</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-geloschten-HFS-festplatte.html">Datenwiederherstellung von einer gel枚schten HFS- oder HFS+ -Festplatte</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-geloschten-APFS-festplatte.html">Datenwiederherstellung von einer gel枚schten APFS-Festplatte</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-formatierten-Ext4FS-festplatte.html">Datenwiederherstellung von einer neu formatierten Ext2/3/4FS-Festplatte </a></li> <li><a href="https://www.r-studio.com/de/datenrettung-von-einer-XFS-Festplatte.html">Datenrettung von einem XFS-Laufwerk</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-einem-einfachen-NAS.html">Datenwiederherstellung von einem einfachen NAS</a></li> <li><a href="https://www.r-studio.com/de/verbinden-virtuelle-RAID-mitdem-Betriebssystem.html">So verbinden Sie virtuelle RAID- und LVM/LDM-Volumes mit dem Betriebssystem</a></li> </ul> <ul class="bottom-col-right"> <li><a href="https://www.r-studio.com/de/besonderheiten-bei-der-dateiwiederherstellung-nach-einer-schnellformatierung.html">Besonderheiten bei der Dateiwiederherstellung nach einer Schnellformatierung</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-nach-absturz-eines-partitionsmanagers.html">Datenwiederherstellung nach Absturz eines Partitionsmanagers</a></li> <li><a href="https://www.r-studio.com/de/dateiwiederherstellung-vs-reparatur-von-dateien.html">Dateiwiederherstellung vs. Reparatur von Dateien</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-von-virtuellen-maschinen.html">Datenwiederherstellung von virtuellen Maschinen</a></li> <li><a href="https://www.r-studio.com/de/Datenrettungs_Artikel/Notfall_Datenwiederherstellung_uber_ein_Netzwerk/">Notfall-Datenwiederherstellung 眉ber ein Netzwerk</a></li> <li><a href="https://www.r-studio.com/de/Datenrettungs_Artikel/Datenwiederherstellung_uber_das_Internet/">R-Studio Technician: Datenwiederherstellung 眉ber das Internet</a></li> <li><a href="https://www.r-studio.com/de/Datenrettungs_Artikel/Erstellen_von_benutzerdefinierten_bekannten_Dateitypen/">Erstellen von benutzerdefinierten bekannten Dateitypen f眉r R-Studio</a></li> <li><a href="https://www.r-studio.com/de/ermitteln-der-raid-parameter.html">Ermitteln der RAID-Parameter</a></li> <li><a href="https://www.r-studio.com/de/Datenrettungs_Artikel/Wiederherstellen_von_Partitionen_einer_beschadigten_Festplatte/">Wiederherstellen von Partitionen einer besch盲digten Festplatte</a></li> <li><a href="https://www.r-studio.com/de/NAT-firewall-traversal-remote-datenwiederherstellung.html">NAT- und Firewall-Traversal f眉r die Remote-Datenwiederherstellung </a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-externen-festplatte.html">Datenwiederherstellung von einer externen Festplatte mit einem besch盲digten Dateisystem</a></li> <li><a href="https://www.r-studio.com/de/grundlagen-dateiwiederherstellungc.html">Grundlagen der Dateiwiederherstellung: Funktionsweise der Datenwiederherstellung</a></li> <li><a href="https://www.r-studio.com/de/parameter-software-stripesets-RAID-MacOSX-wiederherstellung.html">Standardparameter von Software-Stripe-Sets (RAID 0) in Mac OS X.</a></li> <li><a href="https://www.r-studio.com/de/datenwiederherstellung-VHD-dateien.html">Datenwiederherstellung von VHD-Dateien (Virtual Hard Disk)</a></li> <li><a href="https://www.r-studio.com/de/wiederherstellung-verschlusselter-festplatten.html">Datenwiederherstellung aus verschiedenen Dateicontainerformaten und verschl眉sselten Festplatten</a></li> <li><a href="https://www.r-studio.com/de/automatische-erkennung-RAID-parametern.html">Automatische Erkennung von RAID-Parametern</a></li> <li><a href="https://www.r-studio.com/de/datenrettungs-technologie.html">IntelligentScan Datenrettungs-Technologie</a></li> <li><a href="https://www.r-studio.com/de/Multipass-imaging-beschadigter-laufwerke.html">Imaging in mehreren Durchg盲ngen in R-Studio</a></li> <li><a href="https://www.r-studio.com/de/laufzeit-imaging-beschadigten-laufwerken.html">Laufzeit-Imaging in R-Studio</a></li> <li><a href="https://www.r-studio.com/de/lineares-Imaging-vs-laufzeit-Imaging-vs-multipass-imaging.html">Lineares Imaging vs Laufzeit-Imaging vs Multi-Pass-Imaging</a></li> <li><a href="https://www.r-studio.com/de/USB-Stabilizer-fur-instabile-festplatten.html">USB Stabilizer Tech f眉r instabile USB-Ger盲te</a></li> <li><a href="https://www.r-studio.com/de/Verbesserung-der-pc3000-Datenanalyse.html">Geb眉ndelte Kr盲fte von R-Studio und PC-3000 UDMA-Hardware</a></li> <li><a href="https://www.r-studio.com/de/HDDSuperClone-Festplatten-Imaging.html">Geb眉ndelte Kr盲fte: R-Studio und HDDSuperClone arbeiten zusammen</a></li> <li><a href="https://www.r-studio.com/de/datenrettung-und-forensik-dienstleister-kleinere-unternehmen.html">R-Studio T80+ - Eine professionelle L枚sung f眉r Datenrettung und digitale Forensik f眉r kleinere Unternehmen und Privatpersonen f眉r nur 1 US$/Tag.</a></li> </ul> <div class="clearthis"></div> <ul class="bottom-col-left"> <li class="bottom-title">Datensicherungsartikel</li> <li><a href="https://www.drive-image.com/de/Lizenzubertragung.html">R-Drive Image Standalone und Corporate lizenz 眉bertragen</a></li> <li><a href="https://www.drive-image.com/de/backup_software.shtml">Backup-Software. Zuverl盲ssiges Datensicherung</a></li> <li><a href="https://www.drive-image.com/de/kostenloser-leistungsstarker-Partitionsmanager.html">R-Drive Image als kostenloser leistungsstarker Partitionsmanager</a></li> <li><a href="https://www.drive-image.com/de/Computer_und_Systemwiederherstellung.shtml">Computer- und Systemwiederherstellung</a></li> <li><a href="https://www.drive-image.com/de/klonen-von-laufwerken.html">Klonen von Laufwerken und Einrichtung und Instandhaltung einer gro脽en Anzahl an Systemen</a></li> <li><a href="https://www.drive-image.com/de/zugreifen-einem-sicherungsabbild.html">Zugreifen auf einzelne Dateien oder Ordner auf einem Sicherungsabbild</a></li> <li><a href="https://www.drive-image.com/de/datensicherungsplan.html">Erstellen eines datenkonsistenten, platzsparenden Datensicherungsplans f眉r Server von klein- und mittelst盲ndischen Unternehmen</a></li> <li><a href="https://www.drive-image.com/de/verschieben-installierte-Windows-von-Festplatte-auf-SSD-Gerat.html">So verschieben Sie das bereits installierte Windows von einer alten Festplatte auf ein neues SSD-Ger盲t und erstellen ein hybrides Datenspeichersystem</a></li> <li><a href="https://www.drive-image.com/de/Wie-man-ein-installiertes-Windows-auf-eine-SSD-Festplatte-verschiebt.html">Wie man ein installiertes Windows auf eine gr枚脽ere Festplatte verschiebt</a></li> <li><a href="https://www.drive-image.com/de/So-verschiebt-man-eine-BitLocker-verschlusselte-Systemfestplatte-auf-ein-neues-Speicherme.html">So verschiebt man eine BitLocker-verschl眉sselte Systemfestplatte auf ein neues Speichermedium</a></li> <li><a href="https://www.drive-image.com/de/sichern-wiederherstellen-Festplatten-Linux-Mac-computern.html">So sichern und wiederherstellen Sie Festplatten auf Linux- und Mac-Computern mit R-Drive Image</a></li> </ul> <ul class="bottom-col-right"> <li class="bottom-title">Undelete-Artikel</li> <li><a href="https://www.r-undelete.com/de/geloschte-dateien-zuruckzubekommen/">Gel枚schte Dateien zur眉ckzubekommen</a></li> <li><a href="https://www.r-undelete.com/de/kostenlose-wiederherstellung-geloschter-fotos/wiederherstellung-files-von-SD-speicherkarten.html">Kostenlose Wiederherstellung von SD- und Speicherkarten</a></li> <li><a href="https://www.r-undelete.com/de/kostenlose-wiederherstellung-geloschter-fotos/HD-Videowiederherstellung.html">Kostenlose HD-Video-Wiederherstellung von SD-Karten</a></li> <li><a href="https://www.r-undelete.com/de/dateiwiederherstellung-externen-festplatte-formatierten-dateisystem.html">Dateiwiederherstellung von einer externen Festplatte mit einem besch盲digten, gel枚schten, formatierten oder nicht unterst眉tzten Dateisystem</a></li> <li><a href="https://www.r-undelete.com/de/dateiwiederherstellung-nicht-funktionsfahigen-computer.html">R-Undelete: Dateiwiederherstellung von einem nicht funktionsf盲higen Computer</a></li> <li><a href="https://www.r-undelete.com/de/kostenlose-dateiwiederherstellung-android-phone-speicherkarte.html">Kostenlose Dateiwiederherstellung von einer Android Phone Speicherkarte</a></li> <li><a href="https://www.r-undelete.com/de/kostenlose-wiederherstellung-geloschter-fotos/wie-man_tutorial/">Tutorial zur gel枚schten Foto- und Videodateien wiederherstellen</a></li> <li><a href="https://www.r-undelete.com/de/Einfache-Wiederherstellung-Dateien-in-drei-Schritten.html">Einfache Wiederherstellung von Dateien in drei Schritten</a></li> </ul> <div class="clearthis"></div> <div class="bottom-title">PC-Datenschutz-Artikel</div> <ul class="bottom-col-left"> <li><a href="https://www.r-wipe.com/de/schutz-privatsphare-vor-identitatsdiebstahl.html">Schutz der Privatsph盲re und vor Identit盲tsdiebstahl</a></li> <li><a href="https://www.r-wipe.com/de/datentragerbereinigung-so-geben-speicherplatz-frei.html">Datentr盲gerbereinigung: So geben Sie Speicherplatz frei</a></li> <li><a href="https://www.r-wipe.com/de/browser-cache-verlauf-daten-loschen.html">Browser-Cache, Verlauf und andere Daten l枚schen</a></li> <li><a href="https://www.r-wipe.com/de/massendateien-loschen-systemspuren-registrierung-loschen.html">L枚schlisten in R-Wipe&Clean</a></li> <li><a href="https://www.r-wipe.com/de/wahrung-computer-privatsphare-SSD-speichergerat.html">SSD-Speicherger盲te und Computer-Datenschutz</a></li> </ul> <div class="clearthis"></div> </div> <div class="articles-more-container"><span class="articles-more" id="articles-more"></span></div> </div></div> <script type="text/javascript" charset="utf-8"> function onArticlesMore(el) { var cols=document.getElementById("articles-cols"); var more=document.getElementById("articles-more"); if (cols && more) { nodeSwitchClass(cols,"articles-full"); nodeSwitchClass(more,"articles-full"); } } function onArticlesInit() { var more=document.getElementById("articles-more"); if (more) {more.onclick = function(){onArticlesMore(this);};} } </script> </div> <div class="ftr-footer-wrapper"> <div class="section ftr-footer"> <div class="footer-wdir"> <ul class="footer-wdir-ul"> <li><a href="https://www.r-tt.com/de/technology-articles/">Technology articles</a></li> <li><a href="https://www.r-tt.com/de/Glossary.html">Glossary</a></li> <li><a href="http://directory.r-tt.com/">Web directory</a></li> </ul> </div> <div class="ftr-social-container"> <div class="social"> <a rel="nofollow noopener" target="_blank" href="https://twitter.com/RTT_Inc" class="social-item" title="Twitter"><span class="social-twitter"></span></a> <a rel="nofollow noopener" target="_blank" href="https://www.facebook.com/pages/R-Tools-Technology-Inc/236155899748769" class="social-item" title="Facebook"><span class="social-facebook"></span></a> <a rel="nofollow noopener" target="_blank" href="http://rtoolstechnology.tumblr.com/" class="social-item" title="Tumblr"><span class="social-tumblr"></span></a> <a rel="nofollow noopener" target="_blank" href="https://rtoolstechnology.wordpress.com/" class="social-item" title="Wordpress"><span class="social-wordpress"></span></a> </div> </div> <div> <ul class="footer-nav"> <li id="nfm_1"><a href="https://www.r-tt.com/de/Terms_Of_Use.shtml">Nutzungsbedingungen</a></li> <li id="nfm_2"><a href="https://www.r-tt.com/de/Privacy_Policy.shtml">Datenschutzrichtlinien</a></li> <li id="nfm_3"><a href="https://www.r-tt.com/de/RTTInfo.shtml">Kontakt</a></li> <li id="nfm_4"><a href="https://www.r-tt.com/de/Feedback.shtml">R眉ckmeldung</a></li> <li id="nfm_5"><a href="https://www.r-tt.com/de/SiteMap.shtml">Sitemap</a></li> <li id="nfm_6"><a target="_blank" rel="noopener" href="https://forum.r-tt.com/">R-TT Forum</a></li> </ul> </div> <div class="clearthis"></div> <div class="footer-copyright"> &copy; Copyright 2000-2025 R-Tools Technology Inc. </div> </div> </div> </div> </div> </div> <script type="text/javascript" charset="utf-8"> function removeMediaQueries() { var minWidth=982; document.body.setAttribute("style","min-width: "+(minWidth+8).toString()+"px;"); var styleSheets = document.styleSheets;if (!styleSheets) return; for (var i = 0;i<styleSheets.length;i++) { var cssRules = styleSheets[i].cssRules;if (!cssRules) continue; for (var j = 0;j<cssRules.length;j++) { if (!(cssRules[j] instanceof CSSMediaRule)) continue; var n=cssRules[j].media.mediaText.indexOf("max-width:");if (n<=0) continue; n=parseInt(cssRules[j].media.mediaText.substring(n+10));if ((n<=0)||(n>minWidth)) continue; cssRules[j].media.mediaText = "(max-width:1px)"; } } } function onFlexDetect() { var fbd_doc = document.body || document.documentElement;var fbd_style = fbd_doc.style; if (!(fbd_style.webkitFlexWrap == '' || fbd_style.msFlexWrap == '' || fbd_style.flexWrap == '' )) { var hdr=document.getElementById("hdr-hdr"); if (hdr) { hdr.className+=" no-flex"; removeMediaQueries(); } } } onFlexDetect(); </script> <script type="text/javascript" charset="utf-8"> function onMenuInit() { if(document.getElementById('menu-main')) { var menu = document.getElementById('menu-main'), menuContainer = document.getElementById('menu-container'), menuItems = nodeFindChildren(menu,'.menu-item'), menuTitle = nodeFindChildren(menu,'.menu-title'), menuBtn = nodeFindChildren(menuContainer,'.menu-button'); // show menu function showMenu() {nodeAddClass(menuContainer,'show-menu');} // hide menu function hideMenu() {nodeDelClass(menuContainer,'show-menu');} // menu button function clickButton(_this) { if(nodeHasClass(_this,'active')) { nodeDelClass(_this,'active'); nodesDelClass(menuItems,'active'); hideMenu(); } else { nodeAddClass(_this,'active'); showMenu(); } }; for(var i=0;i<menuBtn.length;i++) {menuBtn[i].onclick = function(){clickButton(this);};} // click on menu function clickItem(_this) { if(window.innerWidth < 982) { var _par = _this.parentNode; if (nodeHasClass(_par,'menu-item-wrap')) {_par=_par.parentNode;} if(nodeHasClass(_par,'active')) { nodeDelClass(_par,'active'); } else { var Siblings = _par.parentNode.childNodes; for(var i=0;i<Siblings.length;i++) { if ((Siblings[i].nodeType!=1)||(Siblings[i]==_par)) continue; nodeDelClass(Siblings[i],'active'); } nodeAddClass(_par,'active'); } } }; for(var i=0;i<menuTitle.length;i++) {menuTitle[i].onclick = function(){clickItem(this);};} // close adaptive menu on events function closeAdaptiveMenu() { if(nodesHasClass(menuBtn,'active')) { hideMenu(); nodesDelClass(menuBtn,'active'); } if(nodesHasClass(menuItems,'active')) { nodesDelClass(menuItems,'active'); } } // click outside adaptive menu if (document.addEventListener) { document.addEventListener('mouseup', function(e) { if((window.innerWidth < 982) && !(menuContainer === e.target) && !hasSpecifiedChild(menuContainer,e.target) ) { closeAdaptiveMenu(); } }); } // process window resize, for off of open dropdown in case of mobile->desktop if (window.addEventListener) { window.addEventListener('resize', function() { if(window.innerWidth > 982) {closeAdaptiveMenu();} }); }; } } onMenuInit(); </script> <script type="text/javascript" charset="utf-8"> if (typeof onImgBigShowInit !== 'undefined') {onImgBigShowInit();} if (typeof onArticlesInit !== 'undefined') {onArticlesInit();} if (typeof onReviewsInit !== 'undefined') {onReviewsInit();} if (typeof onOsTabsInit !== 'undefined') {onOsTabsInit();} </script> <div id="pp-info"> <ul> <li> We use cookies to ensure you get the best experience on our website.&nbsp;&nbsp;&nbsp;<a href="https://www.r-tt.com/de/Privacy_Policy.shtml" target="_blank">Read more</a> </li> <li> <a id="pp-done">Got It</a> </li> </ul> <img id="pp-info-0" alt="" /> <img id="pp-info-1" alt="" /> <img id="pp-info-2" alt="" /> <img id="pp-info-3" alt="" /> <img id="pp-info-4" alt="" /> <img id="pp-info-5" alt="" /> </div> <script type="text/javascript" charset="utf-8"> function getCookie(cname) { var name = cname + "="; var decodedCookie = decodeURIComponent(document.cookie); var ca = decodedCookie.split(';'); for(var i = 0; i <ca.length; i++) { var c = ca[i]; while (c.charAt(0) == ' ') { c = c.substring(1); } if (c.indexOf(name) == 0) { return c.substring(name.length, c.length); } } return ""; } function setCookie(cname, cvalue, exdays) { var d = new Date(); d.setTime(d.getTime() + (exdays*24*60*60*1000)); var expires = "expires="+ d.toUTCString(); document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/"; } function pingCookie(strId,aDomains,strGif) { for(i=0;i<aDomains.length;i++) { var strImgId=strId+"-"+i; document.getElementById(strImgId).src=aDomains[i]+strGif; document.getElementById(strImgId).style.display = ""; } } </script><script type="text/javascript" charset="utf-8"> var strPpCookie="r_pp_v1"; var strPpDoneGif="r_pp_v1_ji8s9nde.gif"; var aPpDomains=["https://secure.r-tt.com/","https://www.r-tt.com/","https://www.r-studio.com/","https://www.r-undelete.com/","https://www.r-wipe.com/","https://www.drive-image.com/"]; function onPpInfoDone() { document.getElementById("pp-info").style.display = "none"; setCookie(strPpCookie,"1",3650); pingCookie("pp-info",aPpDomains,strPpDoneGif); } function onPpInfoShow() { var pp_cookie = getCookie(strPpCookie); if (pp_cookie == "") {document.getElementById("pp-info").style.display = "block";} } document.getElementById("pp-done").onclick = onPpInfoDone; setTimeout(function(){onPpInfoShow();},1500); </script> <script type="text/javascript" charset="utf-8"> var strSeCookie="r_se_v1"; var strSeDoneGif="r_se_v1_ji8s9nde.gif"; var aSeDomains=["https://www.r-tt.com/","https://www.r-studio.com/","https://www.r-undelete.com/","https://www.r-wipe.com/","https://www.drive-image.com/"]; function onEventInfoDone() { nodeDelClass(document.getElementById("hdr-wrapper"),"special-event") setCookie(strSeCookie,"1",12); pingCookie("pp-info",aSeDomains,stSepDoneGif); } function onEventInfoShow() { var se_cookie = getCookie(strSeCookie); if (se_cookie == "") {nodeAddClass(document.getElementById("hdr-wrapper"),"special-event");} } if (document.getElementById("event-done")) { var iSecurePos=window.location.href.indexOf("secure."); if (iSecurePos<0) { document.getElementById("event-done").onclick = onEventInfoDone; setTimeout(function(){onEventInfoShow();},1000); } } </script> <script type="text/javascript" charset="utf-8"> function onExplainSwitch(Node) { if (!Node || !Node.parentNode) return; Node=Node.parentNode; if (nodeHasClass(Node,'explain-active')) { nodeDelClass(Node,'explain-active'); } else { var explains = nodeFindChildren(document,'.explain-marker'); for(var i=0;i<explains.length;i++) {nodeDelClass(explains[i].parentNode,'explain-active');} nodeAddClass(Node,'explain-active'); var tt_marks = nodeFindChildren(Node,'.explain-marker'); var tt_conts = nodeFindChildren(Node,'.explain-content'); if ((!tt_marks)||(tt_marks.length!=1)||(!tt_conts)||(tt_conts.length!=1)) return; var tt_left=0;var tt_width=tt_conts[0].offsetWidth;do { tt_left += tt_marks[0].offsetLeft || 0; tt_marks[0] = tt_marks[0].offsetParent; } while (tt_marks[0]); if (tt_left+tt_width<window.innerWidth) { tt_conts[0].style.left=""; } else { var tt_ofs=tt_left-(window.innerWidth-tt_width)+25; tt_conts[0].style.left="-"+tt_ofs.toString()+"px"; } } } function onExplainInit() { var explains = nodeFindChildren(document,'.explain-marker'); for(var i=0;i<explains.length;i++) {explains[i].onclick = function(){onExplainSwitch(this);};} } onExplainInit(); </script> <script type="text/javascript" charset="utf-8"> function onExpandSwitch(Node) { if (!Node) return; if ((typeof onExpandHook !== 'undefined')&&(!onExpandHook(Node))) {return;} var Expand=document.getElementById(Node.id+'-e'); if (nodeHasClass(Node,'expand-active')) { nodeDelClass(Node,'expand-active'); if (Expand) {nodeDelClass(Expand,'expand-active');} } else { nodeAddClass(Node,'expand-active'); if (Expand) {nodeAddClass(Expand,'expand-active');} } } function onExpandInit() { var expands = nodeFindChildren(document,'.expand-title'); for(var i=0;i<expands.length;i++) {expands[i].onclick = function(){onExpandSwitch(this);};} } onExpandInit(); </script> <script type="text/javascript" charset="utf-8"> var aFormChecks=["CUST_NAME","@CUST_EMAIL","CUST_PHONE","CUST_ADDRESS","CUST_CITY","CUST_ZIP","CUST_COUNTRY","CUST_WEBSITE","AFL_CONFIRMED"]; var aCountryFields=["CUST_COUNTRY","CUST_STATE"]; </script> <script type="text/javascript" charset="utf-8"> // Generic forms, aFormChecks prefixes: %:digits, #:phone, *:name, @:email, ~:optional email function isValidDigits(str) { var dig_pattern = /^\s*\d+\s*$/; return dig_pattern.test(str); } function isValidPhone(str) { var strPhone=str.replace(/\D/gm,''); return (strPhone.length>=5)?true:false; } function isLatinOnly(str) { var non_lating = /[^\u0020-\u007f]/; return !non_lating.test(str); } function isValidEmail(email) { var bAt=false, bDot=false; var e=strTrim(email); for (var pos = 0;pos<e.length;pos++) { var c=e.charAt(pos); if (c<=' ') return false; if ((c=='@')&&(bAt)) return false; if (c=='@') bAt = true; if (c=='.') bDot = true; } return bAt && bDot; } function formGetVal(E) { var strVal=E.value; if ((E.type=='checkbox')||(E.type=='radio')) { if (!E.checked) strVal=""; } else { if (strVal == E.getAttribute("js_placeholder")) return ""; } return strVal; } function formIsValidInput(E,Kind) { var strVal=formGetVal(E); if (Kind == "opt_email") {return ((strVal == "")||isValidEmail(strVal))?true:false;} if (strVal == "") return false; if ( (Kind == "email") && (!isValidEmail(strVal)) ) return false; if ( (Kind == "latin") && (!isLatinOnly(strVal)) ) return false; if ( (Kind == "phone") && (!isValidPhone(strVal)) ) return false; if ( (Kind == "digits") && (!isValidDigits(strVal)) ) return false; return true; } function formSetInputValidity(Elem,IsValid) { var E=Elem; if (E.parentNode && nodeHasClass(E.parentNode,"form-round-wrong")) { E=E.parentNode; } else { var P=E.parentNode; for(var i=0;i<4;i++) { if (!P) break; if (P.tagName.slice(0,1)!="T") break; if ((P.tagName=="TABLE") && nodeHasClass(P,"form-table-row")) {E=P;break;} P=P.parentNode } } if (IsValid) { nodeDelClass(E,"form-wrong"); } else { nodeAddClass(E,"form-wrong"); } return IsValid; } function formFillByUri() { var query = location.search.substr(1).split("&"); for(var i=0;i<query.length;i++) { var item = query[i].split("="); item[1] = decodeURIComponent(item[1]); var elem = document.getElementById(item[0]); if (elem) { if (elem.options) { for(var j=0;j<elem.options.length;j++) { var opt=elem.options[j];if (!opt) continue; if (!(item[1].toUpperCase() === opt.value.toUpperCase())) continue; elem.value=opt.value; break; } } else { elem.value=item[1]; } } } } function onSubmitForm(Form) { var bFormValid=true;bFormWrongName=false;var aSubmitBtns=[]; var Elems=Form.elements; for(var j=0;j<Elems.length;j++) { if (typeof aFormChecks !== 'undefined') { for(var i=0;i<aFormChecks.length;i++) { var strChkName=aFormChecks[i];var strChkKind=""; if (strChkName.substr(0,1)=='%') {strChkName=strChkName.slice(1);strChkKind="digits";} if (strChkName.substr(0,1)=='#') {strChkName=strChkName.slice(1);strChkKind="phone";} if (strChkName.substr(0,1)=='*') {strChkName=strChkName.slice(1);strChkKind="latin";} if (strChkName.substr(0,1)=='@') {strChkName=strChkName.slice(1);strChkKind="email";} if (strChkName.substr(0,1)=='~') {strChkName=strChkName.slice(1);strChkKind="opt_email";} if (Elems[j].name==strChkName) { if (!formSetInputValidity(Elems[j],formIsValidInput(Elems[j],strChkKind))) { bFormValid=false; if (strChkKind=="latin") bFormWrongName=true; } break; } } } if (typeof formCustomCheckInput !== 'undefined') { if (!formCustomCheckInput(Elems[j])) bFormValid=false; } if (Elems[j].name=='WordVerify') { if (Elems[j].value == "") { bFormValid=false; formSetInputValidity(Elems[j],false); } else { formSetInputValidity(Elems[j],true); } } if ((Elems[j].tagName=='INPUT')&&(Elems[j].type=='submit')) { aSubmitBtns.push(Elems[j]); } } if (typeof formCustomCheckForm !== 'undefined') { if (!formCustomCheckForm(Form)) bFormValid=false; } if (bFormValid) { nodeDelClass(Form,"form-wrong"); nodesDelClass(aSubmitBtns,"form-wrong"); var SubmitCheck=document.getElementById('#FormWasAlreadySubmited'); if (SubmitCheck) {SubmitCheck.value=new Date().getTime();} for(var j=0;j<Elems.length;j++) { if ((Elems[j].value != "")&&(Elems[j].value == Elems[j].getAttribute("js_placeholder"))) {Elems[j].value="";} } } else { nodeAddClass(Form,"form-wrong"); for(var j=0;j<aSubmitBtns.length;j++) { if (nodeHasClass(aSubmitBtns[j],"form-wrong")) { var newSubmitBtn = aSubmitBtns[j].cloneNode(true); aSubmitBtns[j]=aSubmitBtns[j].parentNode.replaceChild(newSubmitBtn,aSubmitBtns[j]); } else { nodeAddClass(aSubmitBtns[j],"form-wrong"); } } } if (bFormWrongName) { nodeAddClass(Form,"form-wrong-name"); } else { nodeDelClass(Form,"form-wrong-name"); } return bFormValid; } // Word verification function onRefreshCaptcha() { var Img=document.getElementById('WordVerifyImg');if (!Img) return; Img.setAttribute('src','/scripts/cgen?'+new Date().getTime()); } function onFormInit() { var SubmitCheck=document.getElementById('#FormWasAlreadySubmited');if (!SubmitCheck) return; if (SubmitCheck.value != "") { SubmitCheck.value=''; onRefreshCaptcha(); } } // Floating placeholders function fphIsInput(E) { if (!E) return false; return ( ((E.tagName=='INPUT')&&(E.type=='text')) || ((E.tagName=='INPUT')&&(E.type=='password')) || ((E.tagName=='INPUT')&&(E.type=='email')) || (E.tagName=='TEXTAREA') ); } function fphGetLabel(E) { while((E)&&(E.tagName!='LABEL')) E=E.nextSibling; return E; } function onFphChange(E) { var Lbl=fphGetLabel(E);if (!Lbl) return; var IsPlaceholder = (formGetVal(E) == ""); if ( (E === document.activeElement) || (!IsPlaceholder) ) { if (IsPlaceholder) {E.value="";E.setAttribute("js_placeholder","");nodeDelClass(E,"js_placeholder");} Lbl.innerText=Lbl.getAttribute("value"); Lbl.className=(E === document.activeElement)?"js_focus":""; Lbl.style.display = "block"; } else { Lbl.style.display = "none"; if (IsPlaceholder) { var strPlaceholder; if (nodeHasClass(E,"form-wrong")) {strPlaceholder=Lbl.getAttribute("alt");} if ((!strPlaceholder)||(strPlaceholder=="")) {strPlaceholder=Lbl.getAttribute("placeholder");} if ((!strPlaceholder)||(strPlaceholder=="")) {strPlaceholder=Lbl.getAttribute("value");} if (!strPlaceholder) {strPlaceholder="";} E.value=strPlaceholder; E.setAttribute("js_placeholder",strPlaceholder); nodeAddClass(E,"js_placeholder"); } else { E.setAttribute("js_placeholder",""); nodeDelClass(E,"js_placeholder"); } } } function onFphChangeThis() { onFphChange(this); } function onFphInitNode(Node) { if (!Node) return; nodeAddClass(Node,"fph-js"); var aChildren = Node.childNodes; for(var j=0;j<aChildren.length;j++) { if (fphIsInput(aChildren[j])) { onFphChange(aChildren[j]); if (aChildren[j].addEventListener) { aChildren[j].addEventListener('focus',onFphChangeThis,true); aChildren[j].addEventListener('blur',onFphChangeThis,true); aChildren[j].oninput = onFphChangeThis; } else { aChildren[j].onfocusin = onFphChangeThis; aChildren[j].onfocusout = onFphChangeThis; aChildren[j].oncut = aChildren[j].oncopy = aChildren[j].onpaste = aChildren[j].onkeyup = onFphChangeThis; } } } } function onFphInit() { var bHaveNativeFph=false; try { var aSelectors=['.fph input:invalid','.fph input:valid','.fph textarea:invalid','.fph textarea:valid']; if (document.querySelector('.fph')) for(var i=0;i<aSelectors.length;i++) { if (!document.querySelector(aSelectors[i])) continue; bHaveNativeFph=true;break; } } catch(e) {} if (!bHaveNativeFph) { //if (true) { var aFph=nodeFindChildren(document,'.fph'); for(var i=0;i<aFph.length;i++) { onFphInitNode(aFph[i]); } } } // Main execution onFphInit(); onFormInit(); </script> <script type="text/javascript" charset="utf-8"> var aCountryStates=[]; aCountryStates["Canada"]=["Alberta","British Columbia","Manitoba","New Brunswick","Newfoundland and Labrador","Northwest Territories","Nova Scotia","Nunavut","Ontario","Prince Edward Island","Quebec","Saskatchewan","Yukon Territory"]; aCountryStates["United States"]=["Alabama","Alaska","American Samoa","Arizona","Arkansas","Armed Forces Americas (AA)","Armed Forces Outside Americas (AE)","Armed Forces Pacific (AP)","California","Colorado","Connecticut","Delaware","District of Columbia","Florida","Georgia","Guam","Hawaii","Idaho","Illinois","Indiana","Iowa","Kansas","Kentucky","Louisiana","Maine","Maryland","Massachusetts","Michigan","Minnesota","Mississippi","Missouri","Montana","Nebraska","Nevada","New Hampshire","New Jersey","New Mexico","New York","North Carolina","North Dakota","Northern Mariana Islands","Ohio","Oklahoma","Oregon","Pennsylvania","Puerto Rico","Rhode Island","South Carolina","South Dakota","Tennessee","Texas","Utah","Vermont","Virgin Islands, U.S.","Virginia","Washington","West Virginia","Wisconsin","Wyoming"]; function onCountryChange(el) { if (!el||!el.form) return; var elState=el.form.elements[aCountryFields[1]];if (!elState) return; var elParent=elState.parentNode;if (!elParent) return; var opt=el.options[el.selectedIndex];if (!opt) return; nodeDelClass(el,"form-wrong"); nodeDelClass(elState,"form-wrong"); var aStates=aCountryStates[opt.value]; var strLabel=""; if (elState.tagName=="INPUT") { if (!aStates) return; for(var i=0;i<elParent.childNodes.length;i++) { if (elParent.childNodes[i].tagName!="LABEL") continue; strLabel=elParent.childNodes[i].getAttribute("value");break; } } else if (elState.tagName=="SELECT") { if (!elState.options[0]||!elState.options[1]) return; strLabel=elState.options[0].innerHTML;strLabel=strLabel.replace(/\s+\*$/gm,''); if ((aStates)&&(aStates[0]==elState.options[1].value)) return; } else return; if ((!strLabel)||(strLabel=="")) return; var elFirst=null;var elSecond=null;var strClass=null; if (aStates) { strClass="fph-margin"; elFirst = document.createElement("select");if (!elFirst) return; elFirst.setAttribute('name',aCountryFields[1]); elFirst.setAttribute('required',''); var ohdr = document.createElement('option'); ohdr.value = "";ohdr.innerHTML = strLabel+" *"; elFirst.appendChild(ohdr); for(var i=0;i<aStates.length;i++) { var opt = document.createElement('option'); opt.value = aStates[i];opt.innerHTML = aStates[i]; elFirst.appendChild(opt); } } else { strClass="fph"; elFirst=document.createElement("input");if (!elFirst) return; elSecond=document.createElement("label");if (!elSecond) return; elFirst.setAttribute('type','text'); elFirst.setAttribute('name',aCountryFields[1]); elFirst.setAttribute('required',''); elSecond.setAttribute('value',strLabel); } if (!elFirst||!strClass) return; var bIsJs=(elParent.className.indexOf("-js")>=0)?true:false; while(elParent.childNodes.length>0) {elParent.removeChild(elParent.childNodes[0]);} elParent.className=strClass+(bIsJs?" "+strClass+"-js":""); elParent.appendChild(elFirst); if (elSecond) {elParent.appendChild(elSecond);} if ((bIsJs)&&(strClass=="fph")&&(typeof onFphInitNode !== 'undefined')) {onFphInitNode(elParent);} } function onStatesInit() { if (!aCountryFields||!aCountryFields[0]||!aCountryFields[1]) return; for(var i=0;i<document.forms.length;i++) { var elCountry=document.forms[i].elements[aCountryFields[0]];if (!elCountry) continue; var elState=document.forms[i].elements[aCountryFields[1]];if (!elState) continue; elCountry.onchange=function(){onCountryChange(this)}; } } onStatesInit(); </script> </body></html>

Pages: 1 2 3 4 5 6 7 8 9 10