<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
               "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 

    <title>domaindiscount24.com</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta http-equiv="Content-Language" content="en" />
    <meta name="keywords" content="domains, dd24, key-systems" />
<meta name="description" content="domains, dd24, key-systems" />
<meta name="robots" content="index,follow,archive" />    
    <link href="/css/jquery-ui-1.8.16.custom.css" media="screen" rel="stylesheet" type="text/css" />
<link href="/css/screen.css" media="screen" rel="stylesheet" type="text/css" />
<link href="/img/favicon.ico" rel="shortcut icon" type="image/x-icon" />
<link href="/img/favicon.ico" rel="apple-touch-icon" />
	<script type="text/javascript" src="/js/jquery.latest.js"></script>
	<script type="text/javascript" src="/js/jquery.easing.1.3.js"></script>
	<script type="text/javascript" src="/js/jquery.scrollTo-min.js"></script>
	<script type="text/javascript" src="/js/jquery.coda-slider.js"></script>
	<script type="text/javascript" src="/js/jquery.ui.latest.js"></script>
	<script type="text/javascript" src="/js/jquery.dd24.global.js"></script>

	 
				<script type='text/javascript'>
					(function() {
						var occ = document.createElement('script'); occ.type = 'text/javascript'; occ.async = true;
						occ.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'www.onlinechatcenters.com/code-28333-64127.js';
						var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(occ, s);
					})();
				</script>
				
	<!-- Other JS Stuff -->
        
    <script type="text/javascript">
		$().ready(function()
		{

			$('#ajaxContainer').load('/en/ajax/index/index');
			
			// Language Selector
			$('li#language').click(function () {
				$('ul.dropdown').slideToggle('fast');
			});
		
			// Slider Promos
			$('#coda-slider-1').codaSlider({
			dynamicTabs: false
			});
		
			// Slider Explore
			$('#coda-slider-2').codaSlider({
			autoSlide: false
			});

			// Slider Explore the world			
			//$('#coda-slider-3').codaSlider({ autoSlide: false, dynamicArrows: false, firstPanelToLoad: 1 });
		
			// Slider Login / Forgot password
			$('#coda-slider-4').codaSlider({
			autoSlide: false,
			dynamicArrows: false
			});
		
			// Slider Register
			$('#coda-slider-5').codaSlider({
			autoSlide: false,
			dynamicArrows: false
			});

			// Slider TLD Country Information
			$('#coda-slider-6').codaSlider({
			autoSlide: false,
			dynamicArrows: false
			});

			// Toggle TLD
			$('legend.kind').click(function() { toggleTlds(this);
			});
			
			// Toggle check All
			$('a.checkall').click(function() { checkAll(this);
			});

			// Toggle check All and Slide
			$('a.checkallslide').click(function() { checkAllSlide(this);
			});

			// Toggle optional list elements
			$('a.togglelist').click(function() { toggleOptionalListElements(this);
			})
			

			// Toggle whois address
			$('h3.optional').click(function() { toggleAddress(this);
			});

			// Toggle Features
			$('div.feature').click(function() { toggleContent(this);
			});
			
			// Toggle Thirdlevel
			$('legend.thirdlevel').click(function() { toggleContent(this);
			});

			// Toggle debit transfer
			$('fieldset#paymentmethod input[type="radio"]').change(function() {
				toggleRadioButton($("input#register_debittransfer"), "div#debittransfer");
			});
			
			// Toggle credit card
			$('fieldset#paymentmethod input[type="radio"]').change(function() {
				toggleRadioButton($("input#register_creditcard"), "div#creditcard");
			});
			
			// Toggle additonal Price Infos - DomainPiceList
			$('div.prices table tbody td.additional').click ( function () { toggleDomainPriceListInfos(this); } );

			$('#regional').click ( function(element) { 
				$.blockUI
				({
					message: $('#currencyAndLanguage')
				});

			});

			// CID AND PW hint
			var headUsername;
			var headPassword;
			
			$('#head_username').click(function(){
				headUsername = $(this).val();
				$(this).val('');
			});
			
			$('#head_username').blur(function() {
				currentValue = $(this).val();
				if (currentValue == '')
				{
					$(this).val(headUsername);
				}
			});

			$('#head_password').click(function(){
				headPassword = $(this).val();
				$(this).val('');
			});
			
			$('#head_password').blur(function() {
				currentValue = $(this).val();
				if (currentValue == '')
				{
					$(this).val(headPassword);
				}
			});
		});

		function toggleDomainPriceListInfos(element)
		{
			$(element).toggleClass('down');
			$(element).toggleClass('up');
			//$(element).parent().next().toggle();
			
			var whileElement = $(element).parent().next();
			
			while ( whileElement.hasClass('optional') )
			{
				$(whileElement).toggle();
				whileElement = $(whileElement).next();
			}
		}

		function toggleTlds(element){
			var list = $($(element).siblings('ul')[0]);
			list.slideToggle();
			$('#coda-slider-3').height('auto');
			$(element).toggleClass('up');
			$(element).toggleClass('down');
		}
		function toggleAddress(element){
			var list = $($(element).siblings('div.optional')[0]);
			list.slideToggle();
			$('#coda-slider-5').height('auto');
			$(element).toggleClass('up');
			$(element).toggleClass('down');
		}
		function checkAll(element){
			var checkboxes = $(element).siblings().find("input[type=checkbox]");
			var checked = checkboxes[0].checked;
			var ul = $(element).siblings("ul")[0];
        	checkboxes.each(function() { this.checked = !checked; });
		}
		function checkAllSlide(element){
			var checkboxes = $(element).siblings().find("input[type=checkbox]");
			var checked = checkboxes[0].checked;
			var ul = $(element).siblings("ul")[0];
			var legend = $(element).siblings("legend")[0];
			$(legend).removeClass("up");
			$(legend).addClass("down");
        	checkboxes.each(function() { this.checked = !checked; });
			$('#coda-slider-3').height('auto');
			$(ul).show("blind");
		}
		
		function toggleRadioButton(radio,element) {
			var checked = $(radio).prop("checked");
			var element = $(element);
			if (checked) {
			  element.slideDown();
			} else {
			  element.slideUp();
			}
		}
		
		function toggleContent(element)
		{
			var list = $(element).next('div.optional');

			list.slideToggle ('slow',  function () {
				$(element).toggleClass('up');
				$(element).toggleClass('down');
				$('#coda-slider-3').height('auto');
			});
		}
		
		function toggleOptionalListElements(element){
			$('li.optional').slideToggle();
			$('a.togglelist').toggleClass('up');
			$('a.togglelist').toggleClass('down');
		}
		
	</script>
	
	
				<!-- Google Analytics :: Start -->
					<script type='text/javascript'>
						var _gaq = _gaq || [];
						_gaq.push(['_setAccount', 'UA-33762183-1']);
						_gaq.push(['_gat._anonymizeIp']);
						_gaq.push(['_setDomainName', 'domaindiscount24.com']);
						_gaq.push(['_trackPageview']); 
					
						(function() {
							var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
							ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
							var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
						})();
					</script>
				<!-- Google Analytics :: Ende -->
			</head>

<body class="en">
<span class="occIcon-28333-64127"></span>	<noscript>
		<p>JavaScript is currently not supported or disabled by this browser. Please enable JavaScript for full functionality!</p>
	</noscript> 
	<div id="wrap"> 
		<div class="season"></div>
    	<div id="head"> 
        	        		<div id="nav" >

					<ul>
						<li id="home"><a href="/en/" title="Home">GETTEXT[home]</a></li>
		                <li id="domains"><a href="/en/domains" title="Domains">Domains</a></li><li id="webhosting"><a href="/en/webhosting" title="Webhosting">Webhosting</a></li><li id="mailhosting"><a href="/en/mailhosting" title="Mailhosting">Mailhosting</a></li><li id="vserver"><a href="/en/vserver" title="vServer">vServer</a></li><li id="ssl"><a href="/en/ssl" title="SSL">SSL</a></li><li id="other"><a href="/en/other-services" title="Services">Services</a></li><li id="specials"><a href="/en/products/special-offers" title="Special Offers">Special Offers</a></li>					</ul>
			
								<a class="regional" style="cursor:pointer;" id="currencyAndLanguage_link" title="Language and currency settings">en | &euro; EUR</a>
			
			<script type="text/javascript">
				$().ready(function() {
					addDialog("currencyAndLanguage", "Language and currency settings", "450", "auto");
					$("#currencyAndLanguage").dialog({
						buttons: {
							"Close": function() {
								$(this).dialog('close');
							},
							"Save": function() {
								$('#formRegionalSettings').submit();
							}
						}
					});
				});
			</script>

			<div id="currencyAndLanguage">
				<div class="popup">	<p>		The prices are displayed in your selected currency. Payment is in Euros.	</p>	<form action="/en/errp" method="post" id="formRegionalSettings">		<input type="hidden" name="setRegionalSettings" value="true" />		<div>			<fieldset>				<label for="regionalSettingLanguage">Language</label>				<select id="regionalSettingLanguage" name="rurl"><option value="/cn/errp/%40locale/cn" >中國</option><option value="/de/errp/%40locale/de" >Deutsch</option><option value="/en/errp/%40locale/en"  selected="selected">English</option><option value="/es/errp/%40locale/es" >Español</option><option value="/fr/errp/%40locale/fr" >Français</option><option value="/nl/errp/%40locale/nl" >Nederlands</option><option value="/pl/errp/%40locale/pl" >Polski</option><option value="/pt/errp/%40locale/pt" >Português</option><option value="/ru/errp/%40locale/ru" >русский</option><option value="/tr/errp/%40locale/tr" >Türkçe</option>				</select>			</fieldset>		</div>		<div>			<fieldset>				<label for="regionalSettingCurrency">Currency</label>					<select id="regionalSettingCurrency" name="currency"><option value="AUD" >AU$ (AUD ) Australian Dollar</option><option value="BGN" >лв (BGN ) Bulgarian Lev</option><option value="BRL" >R$ (BRL ) Brazilian Real</option><option value="CAD" >CA$ (CAD ) Canadian Dollar</option><option value="CHF" >Fr. (CHF ) Swiss Franc</option><option value="CNY" >CN¥ (CNY ) Chinese Yuan Renminbi</option><option value="CZK" >Kč (CZK ) Czech Republic Koruna</option><option value="DKK" >Dkr (DKK ) Danish Krone</option><option value="EUR"  selected="selected">&euro; (EUR ) Euro</option><option value="GBP" >&pound; (GBP ) British Pound Sterling</option><option value="HKD" >HK$ (HKD ) Hong Kong Dollar</option><option value="HRK" >kn (HRK ) Croatian Kuna</option><option value="HUF" >Ft (HUF ) Hungarian Forint</option><option value="IDR" >Rp (IDR ) Indonesian Rupiah</option><option value="ILS" >₪ (ILS ) Israeli New Sheqel</option><option value="INR" >Rs (INR ) Indian Rupee</option><option value="JPY" >¥ (JPY ) Japanese Yen</option><option value="KRW" >₩ (KRW ) South Korean Won</option><option value="LTL" >Lt (LTL ) Lithuanian Litas</option><option value="MXN" >MXN (MXN ) Mexican Peso</option><option value="MYR" >RM (MYR ) Malaysian Ringgit</option><option value="NOK" >Nkr (NOK ) Norwegian Krone</option><option value="NZD" >NZ$ (NZD ) New Zealand Dollar</option><option value="PHP" >₱ (PHP ) Philippine Peso</option><option value="PLN" >zł (PLN ) Polish Zloty</option><option value="RON" >RON (RON ) Romanian Leu</option><option value="RUB" >RUB (RUB ) Russian Ruble</option><option value="SEK" >Skr (SEK ) Swedish Krona</option><option value="SGD" >S$ (SGD ) Singapore Dollar</option><option value="THB" >฿ (THB ) Thai Baht</option><option value="TRY" >TL (TRY ) Turkish Lira</option><option value="USD" >$ (USD ) US Dollar</option><option value="ZAR" >R (ZAR ) South African Rand</option>					</select>			</fieldset>		</div>	</form></div>			</div>			
		<form id="basket" method="post" action="/en/shopping-cart">
	<fieldset>
		<label for="head_basket">Shopping cart</label>
				
		<input type="text" name="head_basket" id="head_basket" value="0" readonly="readonly" />		<button type="submit" value="Checkout">Checkout</button>	
	</fieldset>
</form><!--/#basket-->			<!-- login -->
			<form id="login" method="post" action="https://login.domaindiscount24.com/en/user/login">
				<fieldset>
					
					<p>
							<a href="https://www.domaindiscount24.com/en/register" class ="button">Register</a>
							or:					</p> 
					
										
					<label for="head_username">Name</label>
					<input name="login_name" type="text" id="head_username" value="Customer number" />
							
					<label for="head_password">Password</label>
					<input name="login_pwd" type="password" id="head_password" value="password" />
						
					<button type="submit" value="Login">Login</button>
			
					<a href="/en/lostpassword" title="Forgot Password?">Forgot Password?</a>
				</fieldset>
			</form>
			<!--/#login-->
					</div><!-- /#nav --> 
    	</div><!-- /#head -->

		<div id="main"> 

						
    		<div id="left"> 
 				 		
        		        		
        		<div class="promo">	<a href="/en/domains/domains-by-region/generic-domains/org">		<img src="/images/cache/a129444181e5b3f66f3847e03b3a48d3.jpg" />	</a></div><!--/.promo--><div class="promo">	<a href="/en/domains/domains-by-region/oceania/nu">		<img src="/images/cache/76df7645b274fc6abef835bc9067907b.png" />	</a></div><!--/.promo--><div class="promo">	<a href="/en/domains/new-tlds/ruhr">		<img src="/images/cache/bbac0132db7ccc00dbad4bd778eb590a.jpg" />	</a></div><!--/.promo--><div class="promo">	<a href="/en/domains/domains-by-region/generic-domains/mobi">		<img src="/images/cache/8c52e41f8060a506e7970da3fba58c62.jpg" />	</a></div><!--/.promo--><div class="promo">	<a href="/en/domains/domains-by-region/asia/asia">		<img src="/images/cache/efc3f6d037932ca050eb3e6c74db9245.jpg" />	</a></div><!--/.promo--><div class="promo">	<a href="/en/webhosting/website-builder">		<img src="/images/cache/539a4c93601c2f985751a3fbf07c0529.jpg" />	</a></div><!--/.promo-->			</div><!-- /#left --> 
    
    		<div id="right"> 
				<ul class='breadcrumb'><li>&nbsp;</li></ul>        		<h1>ICANN Expired Registration Recovery Policy</h1><h2>www.suedtirol-blogs.com</h2>Attention! This domain registration has expired and the renew or cancellation of the domain are pending. If you are the registrant and would like to renew the domain registration, please log on with your account.<div class="login">
	<h1>Login</h1>
 	<div class="coda-slider preload" id="coda-slider-4">
			
		<div class="panel">
			<h2 class="title">Customer Login</h2>
						<form method="post" action="https://login.domaindiscount24.com/en/user/login/?rurl=basket" class="login">
				<fieldset>
					<label for="login_username">Login <span>(Your customer number)</span></label>
					<input type="text" name="login_name" id="login_username" />
				</fieldset>

				<fieldset>
					<label for="login_password">Password</label>
					<input type="password" name="login_pwd" id="login_password" />
				</fieldset>
				<fieldset class="submit">
					<label><span class="hide">Login</span></label>
					<button type="submit" value="Login">Login</button>

					<!-- <input type="checkbox" class="checkbox" id="staysignedin" /> -->
					<!-- <label for="staysignedin" class="staysignedin">Stay signed in</label> -->
				</fieldset>
			</form>
		</div><!--/.panel-->
		

		<div class="panel">
			<h2 class="title">Forgot Password?</h2>
			<form method="post" action="#" class="login">

			<p>If you forgot your password, we can generete a new password. Please enter your account number and email address to reset the password.</p>

				<fieldset>
					<label for="forgot">E-Mail address</label>
					<input type="text" name="forgot" id="forgot" />
					
					<label for="forgot">Account-Nr.</label>
					<input type="password" name="forgot" id="forgot" />
					<button type="submit" value="Reset password">Reset password</button>
				</fieldset>
			</form>

		</div><!--/.panel-->

	</div><!--/.coda-slider -->
</div><!-- /.login -->

<div class="clear"></div>			</div><!-- /#right --> 
    
			<div class="clear"></div> 
  

			<div id="foot"> 
				<div class="logos">
					<ul>
						<li><a target="_blank" href="http://www.icann.org/"><img src="/img/logos/icann.gif" alt="ICANN" /></a></li>
						<li><a target="_blank" href="http://www.eurid.eu/"><img src="/img/logos/eu.gif" alt="Eurid" style="padding-top: 12px;" /></a></li>
						<li><a target="_blank" href="http://denic.de/"><img src="/img/logos/denic.gif" alt="Denic" style="padding-top: 13px;" /></a></li>
						<li><a target="_blank" href="http://www.nic.at/"><img src="/img/logos/at.gif" alt="nic.at" style="padding-top: 16px;" /></a></li>
						<li><a target="_blank" href="http://www.switch.ch/"><img src="/img/logos/switch.gif" alt="Switch" style="padding-top: 16px;" /></a></li>
						<li><a target="_blank" href="http://www.pir.org/"><img src="/img/logos/org.gif" alt="pir.org" style="padding-top: 16px;" /></a></li>
						<li><a target="_blank" href="http://www.sidn.nl/"><img src="/img/logos/nl.gif" alt=".nl" style="padding-top: 15px;" /></a></li>
						<li><a target="_blank" href="http://www.dns.pl/"><img src="/img/logos/pl.gif" alt=".pl" style="padding-top: 15px;" /></a></li>
						<li><a target="_blank" href="http://www.verisigninc.com/"><img src="/img/logos/verisign.gif" alt="Verisign" /></a></li>
						<li><a target="_blank" href="http://www.nic.es/"><img src="/img/logos/es.gif" alt="nic.es" /></a></li>
						<li><a target="_blank" href="http://www.ripe.net/"><img src="/img/logos/ripe.gif" alt="Ripe" /></a></li>
						<li><a target="_blank" href="http://www.dotasia.org/"><img src="/img/logos/asia.gif" alt=".ASIA" /></a></li>
						<li><a target="_blank" href="http://www.nic.se/"><img src="/img/logos/se.gif" style="padding-top: 6px;" alt=".SE" /></a></li>
					</ul>
					<div class="clear"></div>
				</div><!--/.logos-->
       			<ul><li><a href="/en/products" title="Products">Products</a><ul><li><a href="/en/domains"  title="Domains">Domains</a></li><li><a href="/en/webhosting"  title="Webhosting">Webhosting</a></li><li><a href="/en/mailhosting"  title="Mailhosting">Mailhosting</a></li><li><a href="/en/vserver"  title="vServer">vServer</a></li><li><a href="/en/ssl"  title="SSL Certificates">SSL Certificates</a></li><li><a href="/en/other-services"  title="Services">Services</a></li><li><a href="/en/products/special-offers"  title="Special Offers">Special Offers</a></li></ul></li><li><a href="/en/company" title="Company">Company</a><ul><li><a href="/en/company/about-us"  title="About Us">About Us</a></li><li><a href="/en/company/news"  title="News">News</a></li><li><a href="/en/company/contact"  title="Contact">Contact</a></li><li><a href="http://key-systems.net/english/company/jobs/jobs-und-careers-at-key-systems.html"  target="_new"  title="Jobs">Jobs</a></li><li><a href="http://key-systems.net/english/news/events/events.html"  target="_new"  title="Events">Events</a></li><li><a href="/en/company/sponsoring"  title="Sponsoring">Sponsoring</a></li></ul></li><li><a href="/en/support-and-service" title="Support &amp; Service">Support &amp; Service</a><ul><li><a href="/en/support-and-service/hotline"  title="Hotline">Hotline</a></li><li><a href="/en/support-and-service/service-status"  title="Service Status">Service Status</a></li><li><a href="http://enwiki.domaindiscount24.com"  target="_new"  title="FAQ">FAQ</a></li><li><a href="/en/support-and-service/take-a-tour"  title="Take a tour">Take a tour</a></li><li><a href="/en/support-and-service/affiliate"  title="Affiliate Program">Affiliate Program</a></li><li><a href="/en/support-and-service/backorder"  title="Domain backorder">Domain backorder</a></li><li><a href="/en/support-and-service/whois-search"  title="Whois Search">Whois Search</a></li></ul></li><li><a href="/en/legal-notice" title="Legal Notice">Legal Notice</a><ul><li><a href="/en/legal-notice/imprint"  title="Imprint">Imprint</a></li><li><a href="/en/legal-notice/disclaimer"  title="Disclaimer">Disclaimer</a></li><li><a href="/en/legal-notice/terms-and-conditions"  title="Terms &amp; Conditions">Terms &amp; Conditions</a></li><li><a href="http://www.icann.org/en/resources/registrars/registrant-rights-responsibilities"  target="_new"  title="Registrant Rights & Responsibilities">Registrant Rights & Responsibilities</a></li><li><a href="/en/legal-notice/tld-policies"  title="TLD Policies">TLD Policies</a></li></ul></li><li><a href="/en#" title="Stay in touch">Stay in touch</a><ul class="socialmedia"><li><a href="http://twitter.com/dd24"  target="_new"  title="Twitter" class="twitter">Twitter</a></li><li><a href="http://www.facebook.com/pages/Key-Systems-GmbH/123007140308"  target="_new"  title="Facebook" class="facebook">Facebook</a></li><li><a href="http://plus.google.com/u/0/115305295108527409229?rel=author"  target="_new"  title="Google+" class="googleplus">Google+</a></li><li><a href="/en/stay-in-touch/rss"  title="RSS Feed" class="rss">RSS Feed</a></li></ul></li></ul>        		
        		<div class="support"> 
                    <h1>Support Hotline</h1> 
                    <h2>+49 6894  9396860</h2> 
                    <p>Mo-Fr from 8 am - 6 pm</p>

					    
            		<br />
					<a href="http://keydrive.lu" target="new"><img src="/img/keydrive-member.png" alt="Member of the KeyDrive Group"/></a>
        		</div><!-- /#support --> 
        		<div class="clear"></div> 
    		</div><!-- /#foot -->
	    </div><!-- /#main --> 
    
    	<div id="bottom"> 
			<a href="http://key-systems.net/" title="Key-Systems GmbH"><img src="/img/key-systems.png" alt="Key-Systems GmbH" /></a> &copy; 2000-2014		</div><!-- /#bottom --> 
 	</div><!-- /#wrap --> 
</body> 
</html>
