<!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>x10Hosting - Account Suspended</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="styles/main.css" rel="stylesheet" type="text/css" />
<link href="styles/premium.css" rel="stylesheet" type="text/css" />
<script type="text/JavaScript" src="styles/browsers.js"></script>
 <script type="text/javascript">
     if (top.location != location) {
        top.location.href = document.location.href;
     }
     var image = document.createElement('img');
     image.src = '../images/forumso.gif';

function goCheck() {

	window.location = 'index.php?do=check';

}

	function createRequestObject() {
    	var object;
   	 	var browser = navigator.appName;
    	if(browser == 'Microsoft Internet Explorer'){
       		object = new ActiveXObject('Microsoft.XMLHTTP');
    	} else {
     	    object = new XMLHttpRequest();
    	}
    	return object;
	}

	var xmlHttp;
	var USER;
function checkReason(){
	USER = document.getElementById('user').value;
	if(USER != ""){
	  		xmlHttp = createRequestObject();
    		xmlHttp.open('POST', './checkreason.php?', true);
    		xmlHttp.onreadystatechange = handleResponse;
    		xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    		xmlHttp.send('user='+USER);
			document.getElementById('checkForm').style.display = "none";
			document.getElementById('checkRes').style.display = "none";
			document.getElementById('checkLoad').style.display = "";

	} else {
		setMsg("Please enter an username.");
	}
}

function unsuspendAccount(CPAN){
        if(CPAN != ""){
                xmlHttp = createRequestObject();
                xmlHttp.open('POST', './unsuspend.php?', true);
                xmlHttp.onreadystatechange = handleResponse2;
                xmlHttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
                xmlHttp.send('user='+CPAN);
                        document.getElementById('checkForm').style.display = "none";
                        document.getElementById('checkRes').style.display = "none";
			document.getElementById('checkLoad').style.display = "none";
			document.getElementById('inst1').style.display = "";
			document.getElementById('inst2').style.display = "none";
			document.getElementById('cPanel').innerHTML = "";
			document.getElementById('InstUnsu').style.display = "none";
			document.getElementById('InstUnsu2').innerHTML = "";
                        document.getElementById('DoUnsu').style.display = "";

        } else {
                setMsg("No Username Defined.");
        }
}


function Remove(){
	document.getElementById('DoUnsu').style.display = "none";
	document.getElementById('checkForm').style.display = "";
	document.getElementById('checkRes').style.display = "none";
	document.getElementById('checkLoad').style.display = "none";
	document.getElementById('inst1').style.display = "";
	document.getElementById('inst2').style.display = "none";
	document.getElementById('cPanel').innerHTML = "";
	document.getElementById('msgTD').style.background = "#FFFFFF";
	document.getElementById('msgTD').style.border = "none";
	document.getElementById('msgTITLE').style.display = "none";
	document.getElementById('msgSPAN').innerHTML = "";
	document.getElementById('InstUnsu').style.display = "none";
	document.getElementById('InstUnsu2').innerHTML = "";
	document.getElementById('DoUnsu').style.display = "none";
	document.getElementById('UnsuDone').style.display = "none";
	USER = "";
}

function setMsg(MENS){
	document.getElementById('msgTD').style.background = "#DEAEAD";
	document.getElementById('msgTD').style.border = "#840400 solid 1px";
	document.getElementById('msgTITLE').style.display = "";
	document.getElementById('msgSPAN').innerHTML = MENS;
	document.getElementById('DoUnsu').style.display = "none";
}

function handleResponse2(){
       if(xmlHttp.readyState == 4){
                document.getElementById('checkLoad').style.display = "none";
		var TEXT = xmlHttp.responseText;
		if(TEXT == "NOPE") {
			document.getElementById('checkForm').style.display = "";
			setMsg("We could not unsuspend your account. Please go to the <a href=\"http://forums.x10hosting.com\" target=\"_blank\">x10 Forums</a> for more information.");
		}else if(TEXT == "INVALID") {
			document.getElementById('checkForm').style.display = "";
			setMsg("Your account can't be unsuspended via the web. Please go to the <a href=\"http://forums.x10hosting.com\" target=\"_blank\">x10 Forums</a> for more information.");
		}else if(TEXT == "NOACCOUNT") {
			document.getElementById('checkForm').style.display = "";
			setMsg("Your account doesn't seem to exist.Please go to the <a href=\"http://forums.x10hosting.com\" target=\"_blank\">x10 Forums</a> for more information.");
		}else if(TEXT == "NOSUSPENDED") {
			document.getElementById('checkForm').style.display = "";
			setMsg("You account isn't suspended according to our records. Please go to the <a href=\"http://forums.x10hosting.com\" target=\"_blank\">x10 Forums</a> for more informatioon");
		}else{

			document.getElementById('checkForm').style.display = "none";
			document.getElementById('DoUnsu').style.display = "none";
			document.getElementById('UnsuDone').style.display = "";
		}

	}
}

function handleResponse(){
	if(xmlHttp.readyState == 4){
		document.getElementById('checkLoad').style.display = "none";
		var Text = xmlHttp.responseText;
		if(Text == "NOINFO"){
			document.getElementById('checkForm').style.display = "";
			setMsg("Please fill the form completely.");
		} else if(Text == "WRONGPASS"){
			document.getElementById('checkForm').style.display = "";
			setMsg("This username and password combination is wrong.");
		} else if(Text == "NOACCOUNT"){
			document.getElementById('checkForm').style.display = "";
			setMsg("The hosting account does not exist. It may have been terminated.");
		} else if(Text == "NOCPANEL"){
			document.getElementById('checkForm').style.display = "";
			setMsg("There's no hosting account linked to this forum account.");
		} else if(Text == "NOSUSPENDED"){
			document.getElementById('checkForm').style.display = "";
			setMsg("This account is not suspended.");
		} else {
			var Vals = Text.split("-!-!-");
			var CHECK = Vals[1];
			if (CHECK == "INACTIVE") {
				var CPANEL = Vals[0];
				document.getElementById('cPanel').innerHTML = Vals[0];
				document.getElementById('Reason').innerHTML = 'You must login to the <a href=\"http://forums.x10hosting.com/\" target=\"_blank\">x10 Forums</a> once every two weeks to keep your account active.';
  				document.getElementById('Lenght').innerHTML = "Press \"Unsuspend Now\" below to be unsuspended.";
				document.getElementById('InstUnsu').style.display = "";
				document.getElementById('InstUnsu2').innerHTML = "<a href=\"javascript:unsuspendAccount(\'" + CPANEL + "\')\" style=\"text-decoration:none\"><button style=\"border:1px solid #dbdbdb;\" onclick=\"unsuspendAccount(\'" + CPANEL + "\')\">Unsuspend Now</button></a>"; 			
			} else if(CHECK == "NOLINK") {
				var CPANEL = Vals[0];
				document.getElementById('cPanel').innerHTML = Vals[0];
				document.getElementById('Reason').innerHTML = 'You are required to have your forum account and cPanel account linked at all times. Please read <a href=\"http://forums.x10hosting.com/free-hosting/24710-how-link-your-hosting-account-your-forum-account.html#post160606\" target=\"_blank\">this</a> for instructions how this can be done.';
				document.getElementById('Lenght').innerHTML = "Please link your cPanel and forum account and press \"Unsuspend Now\" below to be unsuspended.";
				document.getElementById('InstUnsu').style.display = "";
				document.getElementById('InstUnsu2').innerHTML = "<a href=\"javascript:unsuspendAccount(\'" + CPANEL + "\')\" style=\"text-decoration:none\"><button style=\"border:1px solid #dbdbdb;\" onclick=\"unsuspendAccount(\'" + CPANEL + "\')\">Unsuspend Now</button></a>";
			} else if (CHECK == "NOWEBSITE") {
				var CPANEL = Vals[0];
				document.getElementById('cPanel').innerHTML = Vals[0];
				document.getElementById('Reason').innerHTML = 'You are required to have a working website, with ads if needed, within 7 days of account creation.';
				document.getElementById('Lenght').innerHTML = "Press \"Unsuspend Now\" below to be unsuspended.";
				document.getElementById('InstUnsu').style.display = "";
				document.getElementById('InstUnsu2').innerHTML = "<a href=\"javascript:unsuspendAccount(\'" + CPANEL + "\')\" style=\"text-decoration:none\"><button style=\"border:1px solid #dbdbdb;\" onclick=\"unsuspendAccount(\'" + CPANEL + "\')\">Unsuspend Now</button></a>";

			}else{

			document.getElementById('cPanel').innerHTML = Vals[0];
			document.getElementById('Reason').innerHTML = Vals[1];
			document.getElementById('Lenght').innerHTML = Vals[2];
			document.getElementById('InstUnsu').style.display = "none";
			document.getElementById('InstUnsu2').innerHTML = "";

			}
			document.getElementById('checkForm').style.display = "none";
			document.getElementById('checkRes').style.display = "";
			document.getElementById('checkLoad').style.display = "none";
			document.getElementById('inst1').style.display = "none";
			document.getElementById('inst2').style.display = "";
			document.getElementById('UnsuDone').style.display = "none";
		}
	}
}


  </script>
</head>
<!-- Begin: AdBrite -->
<script type="text/javascript" src="http://ads.adbrite.com/mb/text_group.php?sid=601349&br=1&dk=706572736f6e616c735f305f325f776562"></script>
<!-- End: AdBrite -->
<body>
<div id="page">
  <div id="header">
    <!--<div id="hdrlinks">Free Web Hosting: <br />
      <a href="panel.htm">Members login</a> <img src="images/puce_1.gif" alt=""/> <a href="signup.html">Signup now</a></div>-->

  </div>
  <div id="menubuts">
    <ul>
	  <li><a class="menuhide" href="http://x10hosting.com"></a></li>
      <!--<li class="separ"></li>
      <li><a class="home" href="index-2.html"></a></li>
      <li class="separ"></li>
      <li><a class="fh" href="freehosting.html"></a></li>
      <li class="separ"></li>
      <li><a class="ph" href="premium.html"></a></li>
      <li class="separ"></li>
      <li><a class="hlp" href="support.html"></a></li>
      <li class="separ"></li>
      <li><a class="com" href="http://forums.x10hosting.com/"></a></li>
      <li class="separ"></li>
      <li><a class="about" href="about.html"></a></li>
      <li class="separ"></li>
      <li><a class="cont" href="contactus.html"></a></li>
      <li class="separ"></li>-->
    </ul>
  </div>
  <div id="hlppage">
	<div class="hlpbox">

      <div class="hlptop">&nbsp;</div>
      <div class="hlpmdl">
        <div style="padding:5px; padding-right:10px; text-align:center">
			<script type="text/javascript"><!--
			google_ad_client = "pub-4872493369803645";
			/* 728x90, created 2/19/08 */
			google_ad_slot = "4281853359";
			google_ad_width = 728;
			google_ad_height = 90;
			//-->
			</script>
			<script type="text/javascript"
			src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
			</script>
        </div>
        <div style="clear: both">&nbsp;</div>
      </div>

    </div>
    <div class="hlpbot"></div>
	<br />
    <div class="hlpbox">
      <div class="hlptop">&nbsp;</div>
      <div class="hlpmdl">
        <div style="padding:5px; padding-right:10px">

  <table id="mainContainer" align="center"><tr><td align="center">

    <div id="x10l"></div>
		<span style="font-size: 21px; font-weight: bold; font-variant: small-caps;">Hosting Account Suspended</span><br /><br />

		<script type="text/javascript"><!--
		google_ad_client = "pub-4872493369803645";
		google_ad_width = 468;
		google_ad_height = 15;
		google_ad_format = "468x15_0ads_al";
		//2007-08-10: x10 Suspended Page
		google_ad_channel = "2228496711";
		google_color_border = "FFFFFF";
		google_color_bg = "FFFFFF";
		google_color_link = "2A2A2A";
		google_color_text = "2A2A2A";
		google_color_url = "2A2A2A";
		//-->
		</script>
		<script type="text/javascript"
		  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
		</script><br /><br />
         This website has been suspended by the x10Hosting administration.<br />If you are the owner of this site please click the button below for more information and unsuspension instructions.<br /><br />
		<script type="text/javascript"><!--
		google_ad_client = "pub-4872493369803645";
		google_ad_width = 468;
		google_ad_height = 15;
		google_ad_format = "468x15_0ads_al";
		//2007-08-10: x10 Suspended Page
		google_ad_channel = "2228496711";
		google_color_border = "FFFFFF";
		google_color_bg = "FFFFFF";
		google_color_link = "2A2A2A";
		google_color_text = "2A2A2A";
		google_color_url = "2A2A2A";
		//-->
		</script>
		<script type="text/javascript"
		  src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
		</script><br /><br />
		 <form><input type="button" value="Check Suspension Reason" style="border: 1px solid #dbdbdb;" onclick="goCheck()"></form>

        </div>
        <div style="clear: both">&nbsp;</div>
      </div>
    </div>
    <div class="hlpbot"></div>
	<br />
	<div class="hlpbox">
      <div class="hlptop">&nbsp;</div>
      <div class="hlpmdl">

        <div style="padding:5px; padding-right:10px">
		<iframe src="http://searchportal.information.com/?a_id=48989&domainname=referer_detect" width="800" height="600" scrolling="no" frameborder="0" marginwidth="0" marginheight="0"></iframe>
        </div>
        <div style="clear: both">&nbsp;</div>
      </div>
    </div>
    <div class="hlpbot"></div>
	<br />

	<div class="hlpbox">
      <div class="hlptop">&nbsp;</div>
      <div class="hlpmdl">
        <div style="padding:5px; padding-right:10px; text-align:center">
			<script type="text/javascript"><!--
			google_ad_client = "pub-4872493369803645";
			/* 728x90, created 2/19/08 */
			google_ad_slot = "4281853359";
			google_ad_width = 728;
			google_ad_height = 90;
			//-->
			</script>
			<script type="text/javascript"
			src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
			</script>
        </div>
        <div style="clear: both">&nbsp;</div>

      </div>
    </div>
    <div class="hlpbot"></div>
  </div>
  <div style="clear: both"></div>
  <div id="hstfeat"></div>
  <div id="ftr">
    <div class="ftrbox">
      <div class="ftrtop"></div>

      <div class="ftrmdl"> &copy;2008 <a class="x10com" href="http://x10hosting.com/">x10hosting.com</a> all rights reserved <br />
        <br />
        <a class="ftrlnk" href="http://x10hosting.com/termsofservice">Terms of Service</a></div>
      <div class="ftrbot">
        <p></p>
      </div>

    </div>
  </div>

   <div id="subCon">
    <div id="check"><form><input type="button" value="Check Suspension Reason" style="border: 1px solid #dbdbdb;" 
onclick="goCheck()"></form></div>
    </div>

    <div id="forums"><a href="http://forums.x10hosting.com/" class="for"></a></div>

  <br />
  <br />
  <br />
</div>
</body>

</html>
