<?php
/*
	MRWhois - a Whois lookup script written in PHP.
	Copyright (C) 2001-2003 Marek Rozanski
	http://www.mrscripts.co.uk

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.

	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.

	You should have received a copy of the GNU General Public License
	along with this program; if not, write to the Free Software
	Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

	// change it here - if you changed the file name from mrwhois.php to something else

	define('FILE_NAME',					'mrwhois.php');

	// Language settings

	define('PAGE_TITLE_META', 			'MRWhois v. 2.0');			// Title to be used in META tag within HEADER
	define('POWERED_BY',				'Powered by MRWhois');			// Text to display in a footer, please do not change if you don't have to

	define('MAIN_COMMAND', 				'Please enter a suggested domain name');	// Command in a main window
	define('CHECK_BUTTON', 				'Check');									// Check button text
	define('META_CHARSET',				'iso-8859-1');								// Charset to be used in META tags
	define('META_LANGUAGE',				'en');										// Language to be used in META tags

	define('FOOTER_TEXT', 				'Please wait for the answer - 
										 due to whois servers overload it may take a while to lookup all names.
										 Sometimes you may need to reload the page and repeat lookup.');				// text in footer
	define('FOOTER_RELOAD_TEXT',		'Reload');					// text of the link to reload the page

	// This is an extra layer displayed during domain search. It is helpfull when someone is
	// searching for all domains at once.
	// If you are not confident with layers at all
	// just disable it - set the first value below to false.

	define('WAIT_LAYER_ENABLED',		true);
	define('WAIT_TITLE',				'Please wait...');
	define('WAIT_MESSAGE',				'If the lookup takes too long (more than a minute), click here to reload the page and try again.');

	define('LINK_REGISTER_TEXT',		'Register');						// Register link text
	define('STATUS_BAR_REGISTER_TEXT',	'Register');						// Status bar register message - when hovered over the "Register" link
	define('STATUS_BAR_DETAILS',		'Details of');						// Status bar "Details of" - when hovered over "Details" link
	define('LINK_TAKEN_DETAILS',		'Details');							// "Details" text
	define('LINK_TAKEN_GOTO',			'Goto');						// "Goto" text

	define('ALL_TEXT',					'all');						// Text to display for all domains checking
	define('CLOSE_BUTTON_TEXT',			'Close window');					// "Close" button text in a details window
	define('AVAILABLE_TEXT',			'Available');						// Text displayed if the domain is available
	define('NOT_AVAILABLE_TEXT',		'Taken');						// Text displayed if the domain is not available

	define('ERROR_TOO_SHORT',			'The domain name you typed is to short - it must contain minimum 3 characters'); 			// Error message if the domain name is too short
	define('ERROR_TOO_LONG',			'The domain name you typed is to long - it may contain maximum 63 characters');		// Error message if the domain name is too long
	define('ERROR_HYPHEN',				'Domain names cannot begin or end with a hyphen or contain double hyphens');			// Error message if the domain starts with hyphen or contains double hyphen
	define('ERROR_CHARACTERS',			'Domain names can only contain alphanumerical characters and hyphens');								// Error message if the domain contains other characters than letters, digits or hyphens

	// DESIGN PARAMETERS
	
	define('MAIN_STYLE','
			BODY {
				background-color: 	#ffffff;
				color: 				#000000;
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
			}
			TD {
				color: 				#000000;
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
			}
			
			.available {
				color: 				#006600;
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
			}
			
			.notavailable {
				color: 				#FF0000;
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
			}
			.separator {
				background-color:	#dddddd;
			}
			.footer {
				color: 				#000080;
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			10px;
			}
			.windowborder {
				background-color:	#cccccc;
			}
			.windowinside {
				background-color:	#eeeeee;
			}
			.errors {
				color: 				#FF0000;
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
			}
			A {
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
				color:				#000000;
				text-decoration:	none;
			}
			A:hover {
				font-family: 		"Verdana, Arial, Helvetica";
				font-size: 			12px;
				color:				#FF0000;
				text-decoration:	underline;
			}
			A.footer {
				font-family: 		"Verdana, Arial, Helvetica";
				color: 				#FF0000;
				text-decoration: 	none;
				font-size:			10px;
			}
			A.footer:hover {
				font-family: 		"Verdana, Arial, Helvetica";
				color:				#FF0000;
				text-decoration: 	underline;
				font-size:			10px;
			}
			A.footerreload {
				font-family: 		"Verdana, Arial, Helvetica";
				color: 				#FF0000;
				text-decoration: 	none;
				font-size:			12px;
			}
			A.footerreload:hover {
				font-family: 		"Verdana, Arial, Helvetica";
				color:				#FF0000;
				text-decoration: 	underline;
				font-size:			12px;
			}
			A.footerpowered {
				font-family: 		"Verdana, Arial, Helvetica";
				color: 				#000000;
				text-decoration: 	none;
				font-size:			10px;
			}
			A.footerpowered:hover {
				font-family: 		"Verdana, Arial, Helvetica";
				color:				#FF0000;
				text-decoration: 	underline;
				font-size:			10px;
			}
			



		  ');		// change it to whatever you like

	// Define lookup variables


	// .nl domein
	$nl_server  = "whois.nic.nl";							// server to lookup for domain name
	$nl_nomatch = "is free";									// string returned by server if the domain is not found
	$nl_include = true;										// include this domain in lookup
 
 
 
	// .ca domains
	$ca_server  = "whois.cira.ca";							// server to lookup for domain name
	$ca_nomatch = "AVAIL";									// string returned by server if the domain is not found
	$ca_include = true;										// include this domain in lookup

	// .bc.ca domains
	$bcca_server  = "whois.cira.ca";						// server to lookup for domain name
	$bcca_nomatch = "AVAIL";							// string returned by server if the domain is not found
	$bcca_include = true;									// include this domain in lookup


	// .com .net domains
	$com_server  = "whois.networksolutions.com";			// server to lookup for domain name
	$com_nomatch = "no match";								// string returned by server if the domain is not found
	$com_include = true;									// include this domain in lookup

	// .org domains
	$org_server  = "whois.publicinterestregistry.net";		// server to lookup for domain name
	$org_nomatch = "NOT FOUND";								// string returned by server if the domain is not found
	$org_include = true;									// include this domain in lookup

	// .info domains
	$info_server  = "whois.opensrs.net";					// server to lookup for domain name
	$info_nomatch = "Not found";							// string returned by server if the domain is not found
	$info_include = true;									// include this domain in lookup

	// .pl,  .com.pl domains
	$pl_server   = "whois.dns.pl";							// server to lookup for domain name
	$pl_nomatch  = "does not exists";						// string returned by server if the domain is not found
	$pl_include  = false;										// include this domain in lookup

	// co.uk, org.uk, me.uk domains
	$uk_server   = "whois.nic.uk";							// server to lookup for domain name
	$uk_nomatch  = "No match";								// string returned by server if the domain is not found
	$uk_include  = true;									// include this domain in lookup

	// .biz domains
	$biz_server   = "whois.nic.biz";						// server to lookup for domain name
	$biz_nomatch  = "Not found";							// string returned by server if the domain is not found
	$biz_include  = true;									// include this domain in lookup

	// .us domains
	$us_server   = "whois.nic.us";							// server to lookup for domain name
	$us_nomatch  = "Not found:";							// string returned by server if the domain is not found
	$us_include  = true;									// include this domain in lookup

	// Shall we use register link? (true/false)
	$reglink    = true;
	// If yes, give the url, it can be your affiliate link
	$regurl     = "http://www.123-reg.co.uk/affiliate.cgi?id=AF8763";

	// Do you want a log file? (true/false)
	$wantlog    = true;
	// If yes, give the log file name here
	// remember to chmod the file to 777 (change permition to writable for everyone)
	$logfile    = "mrwhois.log";



/* 
	#################################################################################################################
	End of variables, you do not need to change anythin below this line.
	#################################################################################################################
*/ 

	// This function displays an available domain
	function dispav($what)
	{
		global $reglink, $regurl;
		echo '<tr><td nowrap align="center">';
		if ($reglink)
		{
			echo '<a href="'.$regurl.'" target="_blank" onMouseOver="window.status=\''.STATUS_BAR_REGISTER_TEXT.' '.$what.'\';return true" onMouseOut="window.status=\'\';return true">'.LINK_REGISTER_TEXT.'</a>';
		}
		else
			echo '&nbsp;';
		echo '</td>
		<td nowrap align="center" class="available"><b>'.$what.'</b></td><td colspan=3>&nbsp;</td></tr>';
   }

   // Function to display an unavailable domain with additional links
   function dispun($what,$where)
   {
      echo '<tr>
	  			<td colspan="2">&nbsp;</td>
	            <td align="center" nowrap class="notavailable"><b>'.$what.'</b></td>
            <td nowrap align="center">
			<a href="'.FILE_NAME.'?action=details&ddomain='.$what.'&server='.$where.'" onMouseOver="window.status=\''.STATUS_BAR_DETAILS.' '.$what.'\';return true" onMouseOut="window.status=\'\';return true" onClick="NewWindow(this.href,\'details\',\'620\',\'400\',\'yes\');return false;">
			'.LINK_TAKEN_DETAILS.'</a></td>
            <td nowrap align="center"><a href="http://www.'.$what.'" target="_blank">'.LINK_TAKEN_GOTO.'</a></td>
            </tr>';
   }

   function startborder()
   {
      echo '<table align="center" width="600" border="0" cellspacing="0" cellpadding="0">
            <tr><td width="100%" class="windowborder">
            <table width="600" border="0" cellspacing="1" cellpadding="2">
            <tr><td class="windowinside">';
   }


   function endborder()
   {
      echo '</td></tr></table></td></tr></table>';
   }

   function disperror($text)
   {
      startborder();
      echo '<center><b class="errors">'.$text.'</b></center>';
      endborder();
   }


   function main()
   {
      global $type, $ddomain, $ca_include,$nl_include, $bcca_include, $com_include, $org_include, $uk_include, $pl_include, $info_include, $biz_include, $us_include;
      echo '<br>';
      startborder();
      echo '
      <table width="100%" align="center" cellspacing="0" cellpadding="1">
      <tr>
      <td colspan="2" align="center" width="100%"><b>'.MAIN_COMMAND.'</b></td>
      </tr>
      <tr>
      <td align="center">
         <form method="POST" action="'.FILE_NAME.'">
         <input type="hidden" name="action" value="checkdom">
         <input type="hidden" name="type" value="'.$type.'">
         <input type="text" name="ddomain" size="30" maxlength="63" value="'.$ddomain.'">&nbsp;
		 <input type="submit" name="button" value="'.CHECK_BUTTON.'">
      </td>
      <td align="left">';

		if ($nl_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='nl')  { echo 'CHECKED '; } echo ' NAME="type" VALUE="nl"> nl<br>';
		}
		if ($com_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='com' or $type == '') { echo 'CHECKED '; } echo ' NAME="type" VALUE="com"> com net<br>';
		}
		if ($org_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='org')  { echo 'CHECKED '; } echo ' NAME="type" VALUE="org"> org<br>';
		}
		if ($ca_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='ca') { echo 'CHECKED '; } echo ' NAME="type" VALUE="ca"> ca<br>';
		}
		if ($bcca_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='bcca') { echo 'CHECKED '; } echo ' NAME="type" VALUE="bcca"> bc.ca<br>';
		}
		if ($uk_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='uk')   { echo 'CHECKED '; } echo ' NAME="type" VALUE="uk"> co.uk org.uk me.uk<br>';
		}
		if ($pl_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='pl')   { echo 'CHECKED '; } echo ' NAME="type" VALUE="pl"> pl com.pl<br>';
		}
		if ($info_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='info') { echo 'CHECKED '; } echo ' NAME="type" VALUE="info"> info<br>';
		}
		if ($biz_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='biz')  { echo 'CHECKED '; } echo ' NAME="type" VALUE="biz"> biz<br>';
		}
		if ($us_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='us')   { echo 'CHECKED '; } echo ' NAME="type" VALUE="us"> us<br>';
		}
		if ($com_include or $org_include or $uk_include or $pl_include or $info_include or $biz_include or $us_include)
		{
			echo '<INPUT TYPE="radio" '; if($type=='all')  { echo 'CHECKED '; } echo ' NAME="type" VALUE="all"> '.ALL_TEXT.'';
		}
		
	 echo '</form>
      </td>
      </tr>
      <tr><td colspan="2" align="center" class="footer">'.FOOTER_TEXT.'<br><br>
	  <a class="footerreload" href="'.FILE_NAME.'" target="_self"><b>'.FOOTER_RELOAD_TEXT.'</b></a><br><br>
      <a class="footerpowered" href="http://www.mrscripts.co.uk" target="_blank">'.POWERED_BY.'</a>
      </td></tr>
      </table>';
      endborder();
   }

	function pageheader()
	{
		echo '
		<html>
		<head>
			<meta http-equiv="Content-Type" content="text/html; charset='.META_CHARSET.'">
			<meta http-equiv="Content-Language" content="'.META_LANGUAGE.'">
			<title>'.PAGE_TITLE_META.'</title>
			<style>'.MAIN_STYLE.'</style>
			<script type=text/javascript>
			var win= null;
			function NewWindow(mypage,myname,w,h,scroll)
			{
				var winl = (screen.width-w)/2;
			  	var wint = (screen.height-h)/2;
				var settings  ="height="+h+",";
				settings +="width="+w+",";
				settings +="top="+wint+",";
				settings +="left="+winl+",";
				settings +="scrollbars="+scroll+",";
				settings +="resizable=yes";
				win=window.open(mypage,myname,settings);
				if(parseInt(navigator.appVersion) >= 4){win.window.focus();}
			}
			</script>
		</head>
		<BODY>';
	}
	function pagefooter()
	{
		echo '</BODY></HTML>';
	}


if ($action == "details")
{
	pageheader();
	echo '<pre>';
	$fp = fsockopen($server,43);
	fputs($fp, "$ddomain\r\n");
	while(!feof($fp))
	{
		echo fgets($fp,128);
	}
	fclose($fp);
	echo '</pre>';
	echo '<p align="center"><form><input type="button" value="'.CLOSE_BUTTON_TEXT.'" onclick="window.close()"></form>';
	pagefooter();
	exit;
}

elseif ($action == "checkdom")

{
	if (WAIT_LAYER_ENABLED)
	{
		echo '
		<script language=javascript>
		var ie4 = (document.all) ? true : false;
		var ns4 = (document.layers) ? true : false;
		var ns6 = (document.getElementById && !document.all) ? true : false;
		
		function hidelayer(lay) {
			if (ie4) {document.all[lay].style.visibility = "hidden";}
			if (ns4) {document.layers[lay].visibility = "hide";}
			if (ns6) {document.getElementById([lay]).style.display = "none";}
		}

		function showlayer(lay) {
			if (ie4) {document.all[lay].style.visibility = "visible";}
			if (ns4) {document.layers[lay].visibility = "show";}
			if (ns6) {document.getElementById([lay]).style.display = "block";}
		}
		</script>';

		echo '
		<script language="javascript">
		var laywidth  = screen.width/2;
		var layheight = screen.height/2;
		var layl   = (screen.width-laywidth)/2;
	  	var layt   = (screen.height-layheight)/2;
		document.write("<div id=\'waitlayer\' align=\'center\' style=\'position:absolute; width:"+laywidth+"px; height:"+layheight+"px; z-index:-1; left:"+layl+"px; top:"+layt+"px; visibility: visible;\'>");
		</script>';

  		echo '<center><b>'.WAIT_TITLE.'</b><br><br>
		<a href="'.FILE_NAME.'" target="_self">'.WAIT_MESSAGE.'</a>
		</div>';
	}

	// Check the name for bad characters
	if(strlen($ddomain) < 3)
	{
		pageheader();
		disperror(ERROR_TOO_SHORT);
		main();
		pagefooter();
		exit;
	}
	if(strlen($ddomain) > 63)
	{
		pageheader();
		disperror(ERROR_TOO_LONG);
		main();
		pagefooter();
		exit;
	}
	if(ereg("^-|-$",$ddomain))
	{
		pageheader();
		disperror(ERROR_HYPHEN);
		main();
		pagefooter();
		exit;
	}
	if(!ereg("([a-z]|[A-Z]|[0-9]|-){".strlen($ddomain)."}",$ddomain))
	{
		pageheader();
		disperror(ERROR_CHARACTERS);
		main();
		pagefooter();
		exit;
	}
	pageheader();
	startborder();


   echo '
      <table width="100%" align="center" cellspacing="0" cellpadding="1">
         <tr>
            <td nowrap align="center" class="separator"><b>&nbsp;</b></td>
            <td nowrap align="center" class="separator"><b>'.AVAILABLE_TEXT.'</b></td>
            <td nowrap align="center" class="separator"><b>'.NOT_AVAILABLE_TEXT.'</b></td>
            <td nowrap align="center" class="separator"><b>&nbsp;</b></td>
            <td nowrap align="center" class="separator"><b>&nbsp;</b></td>
         </tr>';

	if ( ($type == "all" or $type == "com") and $com_include )
	{
		$com_array = array($ddomain.".com",$ddomain.".net");
		$com_count = count($com_array);
		$i=0;
		for ($i=0;$i<$com_count;$i++)
		{
			$domname = $com_array[$i];
			$ns = fsockopen($com_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($com_nomatch,$result)) { dispav($domname); } else { dispun($domname,$com_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}
	if ( ($type == "all" or $type == "org") and $org_include )
	{
		$org_array = array($ddomain.".org");
		$org_count = count($org_array);
		$i=0;
		for ($i=0;$i<$org_count;$i++)
		{
			$domname = $org_array[$i];
			$ns = fsockopen($org_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($org_nomatch,$result)) { dispav($domname); } else { dispun($domname,$org_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}
 	if ( ($type == "all" or $type == "nl") and $nl_include )
	{
		$nl_array = array($ddomain.".nl");
		$nl_count = count($nl_array);
		$i=0;
		for ($i=0;$i<$nl_count;$i++)
		{
			$domname = $nl_array[$i];
			$ns = fsockopen($nl_server,43); fputs($ns,"is $domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($nl_nomatch,$result)) { dispav($domname); } else { dispun($domname,$nl_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}
	if ( ($type == "all" or $type == "ca") and $ca_include )
	{
		$ca_array = array($ddomain.".ca");
		$ca_count = count($ca_array);
		$i=0;
		for ($i=0;$i<$ca_count;$i++)
		{
			$domname = $ca_array[$i];
			$ns = fsockopen($ca_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($ca_nomatch,$result)) { dispav($domname); } else { dispun($domname,$ca_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}
	if ( ($type == "all" or $type == "bcca") and $bcca_include )
	{
		$bcca_array = array($ddomain.".bc.ca");
		$bcca_count = count($bcca_array);
		$i=0;
		for ($i=0;$i<$bcca_count;$i++)
		{
			$domname = $bcca_array[$i];
			$ns = fsockopen($bcca_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($bcca_nomatch,$result)) { dispav($domname); } else { dispun($domname,$bcca_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}

	if ( ($type == "all" or $type == "uk") and $uk_include )
	{
		$uk_array = array($ddomain.".co.uk",$ddomain.".org.uk",$ddomain.".me.uk");
		$uk_count = count($uk_array);
		$i=0;
		for ($i=0;$i<$uk_count;$i++)
		{
			$domname = $uk_array[$i];
			$ns = fsockopen($uk_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($uk_nomatch,$result)) { dispav($domname); } else { dispun($domname,$uk_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}

	if ( ($type == "all" or $type == "pl") and $pl_include )
	{
		$pl_array = array($ddomain.".pl",$ddomain.".com.pl");
		$pl_count = count($pl_array);
		$i=0;
		for ($i=0;$i<$pl_count;$i++)
		{
			$domname = $pl_array[$i];
			$ns = fsockopen($pl_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($pl_nomatch,$result)) { dispav($domname); } else { dispun($domname,$pl_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}

	if ( ($type == "all" or $type == "info") and $info_include )
	{
		$info_array = array($ddomain.".info");
		$info_count = count($info_array);
		$i=0;
		for ($i=0;$i<$info_count;$i++)
		{
			$domname = $info_array[$i];
			$ns = fsockopen($info_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($info_nomatch,$result)) { dispav($domname); } else { dispun($domname,$info_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}

	if ( ($type == "all" or $type == "biz") and $biz_include )
	{
		$biz_array = array($ddomain.".biz");
		$biz_count = count($biz_array);
		$i=0;
		for ($i=0;$i<$biz_count;$i++)
		{
			$domname = $biz_array[$i];
			$ns = fsockopen($biz_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($biz_nomatch,$result)) { dispav($domname); } else { dispun($domname,$biz_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}

	if (($type == "all" or $type == "us") and $us_include )
	{
		$us_array  = array($ddomain.".us");
		$us_count = count($us_array);
		$i=0;
		for ($i=0;$i<$us_count;$i++)
		{
			$domname = $us_array[$i];
			$ns = fsockopen($us_server,43); fputs($ns,"$domname\r\n");
			$result = '';
			while(!feof($ns)) $result .= fgets($ns,128); fclose($ns);
			if (eregi($us_nomatch,$result)) { dispav($domname); } else { dispun($domname,$us_server); }
		}
		echo '<tr><td colspan="5" class="separator">&nbsp;</td></tr>';
	}

	echo '</table>';
	endborder();
	if (WAIT_LAYER_ENABLED)
	{
		echo '<script language="javascript">
		hidelayer("waitlayer");
		</script>';
	}

	// if logging enabled write info to the file
	if($wantlog)
	{
		$remote_addr = $REMOTE_ADDR;
		$today = date("d-m-y H:i", time());
		if (file_exists($logfile) and is_writeable($logfile))
		{
			$fp = fopen($logfile,"a+");
			$infolog = "Date: $today | IP: $remote_addr | $ddomain\n";
			fputs($fp, $infolog);
			fclose($fp);
		}
	}
	main();
	pagefooter();
}

else

{
	pageheader();
	main();
	pagefooter();
}
?>
