<html>

<head>
<meta name="description" content="IP To Country themes you can use on your website">
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>IP To Country user themes</title>

<script language="javascript">
function OpenWin(newin) {
openWin=window.open(newin,"openWin","resizable=yes,scrollbars=yes,width=600,height=400,top=1,left=1")
}
</script>

<link rel="STYLESHEET" type="text/css" href="http://webnet77.com/s.css">
</head>

<body text="#808080" bgcolor="#FFFFFF" vlink="#00CC99" style="font-size: 8pt; font-family: Arial; color: #000080">

<!--webbot bot="Include" U-Include="../HEADER_HEAD.htm" TAG="BODY" startspan -->

<script type="text/javascript">//<![CDATA[

//*****************************************************************************
// Do not remove this notice.
//
// Copyright 2000-2004 by Mike Hall.
// See http://www.brainjar.com for terms of use.
//*****************************************************************************

//----------------------------------------------------------------------------
// Code to determine the browser and version.
//----------------------------------------------------------------------------

function Browser() {

  var ua, s, i;

  this.isIE    = false;  // Internet Explorer
  this.isOP    = false;  // Opera
  this.isNS    = false;  // Netscape
  this.version = null;

  ua = navigator.userAgent;

  s = "Opera";
  if ((i = ua.indexOf(s)) >= 0) {
    this.isOP = true;
    this.version = parseFloat(ua.substr(i + s.length));
    return;
  }

  s = "Netscape6/";
  if ((i = ua.indexOf(s)) >= 0) {
    this.isNS = true;
    this.version = parseFloat(ua.substr(i + s.length));
    return;
  }

  // Treat any other "Gecko" browser as Netscape 6.1.

  s = "Gecko";
  if ((i = ua.indexOf(s)) >= 0) {
    this.isNS = true;
    this.version = 6.1;
    return;
  }

  s = "MSIE";
  if ((i = ua.indexOf(s))) {
    this.isIE = true;
    this.version = parseFloat(ua.substr(i + s.length));
    return;
  }
}

var browser = new Browser();

//----------------------------------------------------------------------------
// Code for handling the menu bar and active button.
//----------------------------------------------------------------------------

var activeButton = null;

// Capture mouse clicks on the page so any active button can be
// deactivated.

if (browser.isIE)
  document.onmousedown = pageMousedown;
else
  document.addEventListener("mousedown", pageMousedown, true);

function pageMousedown(event) {

  var el;

  // If there is no active button, exit.

  if (activeButton == null)
    return;

  // Find the element that was clicked on.

  if (browser.isIE)
    el = window.event.srcElement;
  else
    el = (event.target.tagName ? event.target : event.target.parentNode);

  // If the active button was clicked on, exit.

  if (el == activeButton)
    return;

  // If the element is not part of a menu, reset and clear the active
  // button.

  if (getContainerWith(el, "DIV", "menu") == null) {
    resetButton(activeButton);
    activeButton = null;
  }
}

function buttonClick(event, menuId) {

  var button;

  // Get the target button element.

  if (browser.isIE)
    button = window.event.srcElement;
  else
    button = event.currentTarget;

  // Blur focus from the link to remove that annoying outline.

  button.blur();

  // Associate the named menu to this button if not already done.
  // Additionally, initialize menu display.

  if (button.menu == null) {
    button.menu = document.getElementById(menuId);
    if (button.menu.isInitialized == null)
      menuInit(button.menu);
  }

  // Reset the currently active button, if any.

  if (activeButton != null)
    resetButton(activeButton);

  // Activate this button, unless it was the currently active one.

  if (button != activeButton) {
    depressButton(button);
    activeButton = button;
  }
  else
    activeButton = null;

  return false;
}

function buttonMouseover(event, menuId) {

  var button;

  // Find the target button element.

  if (browser.isIE)
    button = window.event.srcElement;
  else
    button = event.currentTarget;

  // If any other button menu is active, make this one active instead.

  if (activeButton != null && activeButton != button)
    buttonClick(event, menuId);
}

function depressButton(button) {

  var x, y;

  // Update the button's style class to make it look like it's
  // depressed.

  button.className += " menuButtonActive";

  // Position the associated drop down menu under the button and
  // show it.

  x = getPageOffsetLeft(button);
  y = getPageOffsetTop(button) + button.offsetHeight;

  // For IE, adjust position.

  if (browser.isIE) {
    x += button.offsetParent.clientLeft;
    y += button.offsetParent.clientTop;
  }

  button.menu.style.left = x + "px";
  button.menu.style.top  = y + "px";
  button.menu.style.visibility = "visible";

  // For IE; size, position and show the menu's IFRAME as well.

  if (button.menu.iframeEl != null)
  {
    button.menu.iframeEl.style.left = button.menu.style.left;
    button.menu.iframeEl.style.top  = button.menu.style.top;
    button.menu.iframeEl.style.width  = button.menu.offsetWidth + "px";
    button.menu.iframeEl.style.height = button.menu.offsetHeight + "px";
    button.menu.iframeEl.style.display = "";
  }
}

function resetButton(button) {

  // Restore the button's style class.

  removeClassName(button, "menuButtonActive");

  // Hide the button's menu, first closing any sub menus.

  if (button.menu != null) {
    closeSubMenu(button.menu);
    button.menu.style.visibility = "hidden";

    // For IE, hide menu's IFRAME as well.

    if (button.menu.iframeEl != null)
      button.menu.iframeEl.style.display = "none";
  }
}

//----------------------------------------------------------------------------
// Code to handle the menus and sub menus.
//----------------------------------------------------------------------------

function menuMouseover(event) {

  var menu;

  // Find the target menu element.

  if (browser.isIE)
    menu = getContainerWith(window.event.srcElement, "DIV", "menu");
  else
    menu = event.currentTarget;

  // Close any active sub menu.

  if (menu.activeItem != null)
    closeSubMenu(menu);
}

function menuItemMouseover(event, menuId) {

  var item, menu, x, y;

  // Find the target item element and its parent menu element.

  if (browser.isIE)
    item = getContainerWith(window.event.srcElement, "A", "menuItem");
  else
    item = event.currentTarget;
  menu = getContainerWith(item, "DIV", "menu");

  // Close any active sub menu and mark this one as active.

  if (menu.activeItem != null)
    closeSubMenu(menu);
  menu.activeItem = item;

  // Highlight the item element.

  item.className += " menuItemHighlight";

  // Initialize the sub menu, if not already done.

  if (item.subMenu == null) {
    item.subMenu = document.getElementById(menuId);
    if (item.subMenu.isInitialized == null)
      menuInit(item.subMenu);
  }

  // Get position for submenu based on the menu item.

  x = getPageOffsetLeft(item) + item.offsetWidth;
  y = getPageOffsetTop(item);

  // Adjust position to fit in view.

  var maxX, maxY;

  if (browser.isIE) {
    maxX = Math.max(document.documentElement.scrollLeft, document.body.scrollLeft) +
      (document.documentElement.clientWidth != 0 ? document.documentElement.clientWidth : document.body.clientWidth);
    maxY = Math.max(document.documentElement.scrollTop, document.body.scrollTop) +
      (document.documentElement.clientHeight != 0 ? document.documentElement.clientHeight : document.body.clientHeight);
  }
  if (browser.isOP) {
    maxX = document.documentElement.scrollLeft + window.innerWidth;
    maxY = document.documentElement.scrollTop  + window.innerHeight;
  }
  if (browser.isNS) {
    maxX = window.scrollX + window.innerWidth;
    maxY = window.scrollY + window.innerHeight;
  }
  maxX -= item.subMenu.offsetWidth;
  maxY -= item.subMenu.offsetHeight;

  if (x > maxX)
    x = Math.max(0, x - item.offsetWidth - item.subMenu.offsetWidth
      + (menu.offsetWidth - item.offsetWidth));
  y = Math.max(0, Math.min(y, maxY));

  // Position and show it.

  item.subMenu.style.left       = x + "px";
  item.subMenu.style.top        = y + "px";
  item.subMenu.style.visibility = "visible";

  // For IE; size, position and show the menu's IFRAME as well.

  if (item.subMenu.iframeEl != null)
  {
    item.subMenu.iframeEl.style.left    = item.subMenu.style.left;
    item.subMenu.iframeEl.style.top     = item.subMenu.style.top;
    item.subMenu.iframeEl.style.width   = item.subMenu.offsetWidth + "px";
    item.subMenu.iframeEl.style.height  = item.subMenu.offsetHeight + "px";
    item.subMenu.iframeEl.style.display = "";
  }

  // Stop the event from bubbling.

  if (browser.isIE)
    window.event.cancelBubble = true;
  else
    event.stopPropagation();
}

function closeSubMenu(menu) {

  if (menu == null || menu.activeItem == null)
    return;

  // Recursively close any sub menus.

  if (menu.activeItem.subMenu != null) {
    closeSubMenu(menu.activeItem.subMenu);


    // Hide the sub menu.
    menu.activeItem.subMenu.style.visibility = "hidden";

    // For IE, hide the sub menu's IFRAME as well.

    if (menu.activeItem.subMenu.iframeEl != null)
      menu.activeItem.subMenu.iframeEl.style.display = "none";

    menu.activeItem.subMenu = null;
  }

  // Deactivate the active menu item.
  removeClassName(menu.activeItem, "menuItemHighlight");
  menu.activeItem = null;
}

//----------------------------------------------------------------------------
// Code to initialize menus.
//----------------------------------------------------------------------------

function menuInit(menu) {

  var itemList, spanList;
  var textEl, arrowEl;
  var itemWidth;
  var w, dw;
  var i, j;
  // For IE, replace arrow characters.
  if (browser.isIE) {
    menu.style.lineHeight = "2.5ex";
    spanList = menu.getElementsByTagName("SPAN");
    for (i = 0; i < spanList.length; i++)
      if (hasClassName(spanList[i], "menuItemArrow")) {
        spanList[i].style.fontFamily = "Webdings";
        spanList[i].firstChild.nodeValue = "4";
      }
  }
  // Find the width of a menu item.
  itemList = menu.getElementsByTagName("A");
  if (itemList.length > 0)
    itemWidth = itemList[0].offsetWidth;
  else
    return;
  // For items with arrows, add padding to item text to make the
  // arrows flush right.
  for (i = 0; i < itemList.length; i++) {
    spanList = itemList[i].getElementsByTagName("SPAN");
    textEl  = null;
    arrowEl = null;
    for (j = 0; j < spanList.length; j++) {
      if (hasClassName(spanList[j], "menuItemText"))
        textEl = spanList[j];
      if (hasClassName(spanList[j], "menuItemArrow")) {
        arrowEl = spanList[j];
      }
    }
    if (textEl != null && arrowEl != null) {
      textEl.style.paddingRight = (itemWidth 
        - (textEl.offsetWidth + arrowEl.offsetWidth)) + "px";

      // For Opera, remove the negative right margin to fix a display bug.

      if (browser.isOP)
        arrowEl.style.marginRight = "0px";
    }
  }
  // Fix IE hover problem by setting an explicit width on first item of
  // the menu.
  if (browser.isIE) {
    w = itemList[0].offsetWidth;
    itemList[0].style.width = w + "px";
    dw = itemList[0].offsetWidth - w;
    w -= dw;
    itemList[0].style.width = w + "px";
  }
  // Fix the IE display problem (SELECT elements and other windowed controls
  // overlaying the menu) by adding an IFRAME under the menu.
  if (browser.isIE) {
    var iframeEl = document.createElement("IFRAME");
    iframeEl.frameBorder = 0;
    iframeEl.src = "javascript:;";
    iframeEl.style.display = "none";
    iframeEl.style.position = "absolute";
    iframeEl.style.filter = "progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
    menu.iframeEl = menu.parentNode.insertBefore(iframeEl, menu);
  }
  // Mark menu as initialized.
  menu.isInitialized = true;
}

//----------------------------------------------------------------------------
// General utility functions.
//----------------------------------------------------------------------------

function getContainerWith(node, tagName, className) {

  // Starting with the given node, find the nearest containing element
  // with the specified tag name and style class.
  while (node != null) {
    if (node.tagName != null && node.tagName == tagName &&
        hasClassName(node, className))
      return node;
    node = node.parentNode;
  }
  return node;
}

function hasClassName(el, name) {

  var i, list;
  // Return true if the given element currently has the given class
  // name.
  list = el.className.split(" ");
  for (i = 0; i < list.length; i++)
    if (list[i] == name)
      return true;

  return false;
}

function removeClassName(el, name) {

  var i, curList, newList;

  if (el.className == null)
    return;
  // Remove the given class name from the element's className property.
  newList = new Array();
  curList = el.className.split(" ");
  for (i = 0; i < curList.length; i++)
    if (curList[i] != name)
      newList.push(curList[i]);
  el.className = newList.join(" ");
}

function getPageOffsetLeft(el) {

  var x;
  // Return the x coordinate of an element relative to the page.
  x = el.offsetLeft;
  if (el.offsetParent != null)
    x += getPageOffsetLeft(el.offsetParent);

  return x;
}

function getPageOffsetTop(el) {

  var y;
  // Return the x coordinate of an element relative to the page.
  y = el.offsetTop;
  if (el.offsetParent != null)
    y += getPageOffsetTop(el.offsetParent);

  return y;
}

//]]></script>
			<noscript>
							<div align="center">
								<table border="0" cellpadding="3" style="border-collapse: collapse; font-family: Verdana; font-size: 10pt; border: 1px dotted #FF0000">
									<tr>
										<td>
							<div align="center">
								<table border="0" cellpadding="3" style="border-collapse: collapse; font-family: Verdana; font-size: 10pt; font-weight: bold; border: 1px dotted #FF0000" bgcolor="#FED8DC">
									<tr>
										<td bgcolor="#FED8DC">
										<p align="center"><font face="Verdana"><b><font size="4">JavaScript is currently disabled on your browser.</font></b></font></p>
										<p align="center"><font face="Verdana">In order to use this website, you must have JavaScript enabled. For instructions on how to configure your browser, select from the list of supported browsers below:</font></p>
										</td>
									</tr>
								</table>
							</div>
							<p><font face="Verdana"><br>
							<br>
							<u><b>Microsoft Internet Explorer for Windows</b></u><br>
							<br>
							1. Select <b>Internet Options</b> from the <b>Tools</b> menu.<br>
							2. Click the <b>Security</b> tab.<br>
							3. Click <b>Custom Level</b> in <b>Security Level for this Zone</b>.<br>
							4. Scroll down to <b>Scripting</b>, near the bottom of the list.<br>
							5. Under Active Scripting, choose <b>Enable</b>.<br>
							<br>
							<u><b>Firefox/Mozilla Windows</b></u><br>
							<br>
							1. Select <b>Edit</b> from the menu bar and click on <b>Preferences</b>.<br>
							2. Click on plus sign next to <b>Advanced</b> to show Advanced options.<br>
							3. Click on <b>Scripts &amp; Plugins</b>.<br>
							4. Click on the checkbox next to <b>Navigator</b> under <b>Enable JavaScript for</b>.<br>
							<br>
							<u><b>Firefox/Mozilla Mac</b></u><br>
							<br>
							1. Select <b>Firefox/Mozilla </b>from the menu bar and click on <b>Preferences</b>.<br>
							2. Click on <b>triangle</b> next to <b>Advanced</b> to expand the sub-menu if needed.<br>
							3. Click on <b>Scripts &amp; Plugins</b>.<br>
							4. Click on checkbox next to <b>Navigator</b> under <b>Enable JavaScript for</b>.<br>
							<br>
							<u><b>Safari</b></u><br>
							<br>
							1. Select <b>Safari</b> from the menu bar and click on <b>Preferences</b>.<br>
							2. Click on the <b>Security</b> icon.<br>
							3. Click on checkbox next to <b>Enable JavaScript</b>.<br>
							&nbsp;</font></p>
							
										<p>&nbsp;</td>
									</tr>
								</table>
						</div>
				</noscript>

<div align="center">
	<table style="border-collapse: collapse;" border="0" cellpadding="0" width="800">
		<tr>
			<td height="206" valign="top" width="806">
			<table style="border-collapse: collapse;" border="0" bordercolor="#111111" cellpadding="0" width="800">
				<tr>
					<td valign="top"><a title="Christian Web Hosting" href="http://webnet77.com/"><img border="0" src="/Jay/img/webnet77_main.jpg" width="646" height="206" alt="Webnet77 Christian web host" /></a></td>
					<td width="100%" valign="top">
					<table style="border-collapse: collapse;" border="0" bordercolor="#111111" cellpadding="0" cellspacing="0" width="100%">
						<tr>
							<td align="center" bgcolor="#008EFE" height="118" valign="top" width="100%">
							<p><font color="#ffffff" size="2"><b><br />
							<br />
							Hosting Packages</b></font><font color="#ffffff" face="Tahoma" size="1"><br />
							<br />
							Up to 40 GB storage!<br />
							Up to 200GB Traffic!<br /></font></p>
							</td>
						</tr>
						<tr>
							<td height="10"></td>
						</tr>
						<tr>
							<td bgcolor="#ADADAD" height="16" width="100%">&nbsp;</td>
						</tr>
						<tr>
							<td height="51" width="100%">
							<p align="center"><font color="#cc6600" size="3"><b>Christian <br />
							web hosting</b></font></p>
							</td>
						</tr>
						<tr>
							<td bgcolor="#008EFE" height="3"></td>
						</tr>
						<tr>
							<td height="3" width="100%"></td>
						</tr>
						<tr>
							<td height="3" width="100%">
							<p align="center"><a title="Email this page to a friend" href="/cgi-sys/mtf/fm.pl?bl=RU:BR:PL:CN:KR"><img border="0" src="/images/emailthisa.gif" width="83" height="19" /></a></p>
							</td>
						</tr>
					</table>
					</td>
				</tr>
				<tr>
					<td width="100%" colspan="2">
					</td>
				</tr>
			</table>
			</td>
		</tr>
		<tr>
			<td>
	
<!-- Top Level Menu Items (Level-0) -->
<div class="menuBar">
<!--  <a class="menuItem" href="http://webnet77.com/"><b>HOME</b></a>  -->
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'homeMenu');" onmouseover="buttonMouseover(event, 'homeMenu');">Home <img border="0" src="/images/down.gif" width="10" height="10"></a>
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'aboutMenu');" onmouseover="buttonMouseover(event, 'aboutMenu');">About <img border="0" src="/images/down.gif" width="10" height="10"></a>
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'pricingMenu');" onmouseover="buttonMouseover(event, 'pricingMenu');">Price/Features <img border="0" src="/images/down.gif" width="10" height="10"></a>
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'orderMenu');" onmouseover="buttonMouseover(event, 'orderMenu');">Order <img border="0" src="/images/down.gif" width="10" height="10"></a>
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'helpMenu');" onmouseover="buttonMouseover(event, 'helpMenu');">Help <img border="0" src="/images/down.gif" width="10" height="10"></a>
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'downloadMenu');" onmouseover="buttonMouseover(event, 'downloadMenu');">Downloads <img border="0" src="/images/down.gif" width="10" height="10"></a>
	<a class="menuButton" href="#" onclick="return buttonClick(event, 'toolsMenu');" onmouseover="buttonMouseover(event, 'toolsMenu');">Tools <img border="0" src="/images/down.gif" width="10" height="10"></a>
  <a class="menuButton" href="https://webnet77.net/contact.html"><b>CONTACT US</b></a>
  <a class="menuButton" href="/cp/" rel="nofollow"><b>LOGIN</b></a>
</div>

<!-- Home Menu (level-1) -->
<div id="homeMenu" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="/">Home Page</a> 
  <a class="menuItem" href="/tos.html">Terms of Service (TOS)</a>  
	<a class="menuItem" href="/aup.html">Acceptable Use Policy (AUP)</a>
	<a class="menuItem" href="/privacy.html">Privacy</a>
</div>

<!-- About Menu (level-1) -->
<div id="aboutMenu" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="/about.html">About us</a> 
	<a class="menuItem" href="/link-to-us.html">Link to us</a> 
  <a class="menuItem" href="/testimonial.html">Testimonials</a>  
	<a class="menuItem" href="/whc.html">Christian</a>
	<a class="menuItem" href="/links">Christian Links</a>
	<a class="menuItem" href="/data-center.html">Data Center</a>
</div>

<!-- Price Menu (level-1) -->
<div id="pricingMenu" class="menu" onmouseover="menuMouseover(event)">
	<p class="menuheading"><b>WEB HOSTING</b></p>
	<div class="menuItemSep">
	</div>
	<a class="menuItem" href="/">Current Specials</a> 
	<a class="menuItem" href="/?details">Plans - Pricing Comparison</a> 
	<a class="menuItem" href="/features.html">Features</a>
	<a class="menuItem" href="/features.html#fantastico">Fantastico</a>
	<a class="menuItem" href="/website_templates.html">Website Templates</a>
	<a class="menuItem" href="/wysiwyg-editor/index.html">Site Builder</a>
	
	
<p class="menuheading"><b>RESELLER HOSTING <img border="0" src="../images/new-1.gif" width="28" height="11"></b></p>
	<div class="menuItemSep">
	</div>
	<a class="menuItem" href="/reseller/" >Information</a> 
	<a class="menuItem" href="/?reseller" >Plans</a>

	
</div>

<!-- Order Menu (Level-1) -->
<div id="orderMenu" class="menu" onmouseover="menuMouseover(event)">
	<p class="menuheading"><b>WEB HOSTING</b></p>
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=2">WebStarter</a> 
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=3">WebBuilder</a>
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=1">WebMaster</a>
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=9">WebPro</a>
	<a class="menuItem" href="/tos.html">Terms of service</a>

	<p class="menuheading"><b>RESELLER HOSTING <img border="0" src="../images/new-1.gif" width="28" height="11"></b></p>
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=23" >Reseller-Intro</a> 
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=24" >Reseller-Pro</a>
	<a class="menuItem" href="https://webnet77.net/signup.pl?PID=25" >Reseller-Super</a>
	<a class="menuItem" href="/tos.html">Terms of Service</a>

	<p class="menuheading"><b>EXTRAS</b></p>
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="http://software77.net">Domain Names</a>
	<a class="menuItem" href="/SSL-certificates.html" >SSL Certificates</a> 
</div>

<!-- Help Menu (Level-1) -->
<div id="helpMenu" class="menu" onmouseover="menuMouseover(event)">
	<p class="menuheading"><b>HOSTING HELP</b></p> 
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/faq.html">FAQ</a> 
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'helpSubMenu1');"><span class="menuItemText">Online Movies</span><span class="menuItemArrow">&#9654;</span></a> 
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'helpSubMenu2');"><span class="menuItemText">Help Articles</span><span class="menuItemArrow">&#9654;</span></a> 
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'MBhelpSubMenu');"><span class="menuItemText">Forum Articles</span><span class="menuItemArrow">&#9654;</span></a> 
	<a class="menuItem" href="/help-cp-manuals.html">Download Manuals</a> 

	<p class="menuheading"><b>RESELLER HELP</b></p> 
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/reseller/reseller-faq.html">FAQ</a> 
	<a class="menuItem" href="/flash-tutorials/WHM/index.html">WHM Tutorials</a> 
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'helpSubMenu3');"><span class="menuItemText">Help Articles</span><span class="menuItemArrow">&#9654;</span></a> 

</div>

<!-- Help sub menus Online Movies (Level-2) -->
<div id="helpSubMenu1" class="menu">
	<p class="menuheading"><b>FLASH MOVIES</b></p> 
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/help.html">ALL Movies</a> 
	<a class="menuItem" href="/flash-tutorials/xcontroller/">Control Panel</a>
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/flash-tutorials/frontpage2000/">Front Page 2000</a>
	<a class="menuItem" href="/flash-tutorials/frontpage-2003/">Front Page 2003</a>
	<a class="menuItem" href="/flash-tutorials/dreamweaver/help-dreamweaver.html">Dream Weaver</a>
	<a class="menuItem" href="/flash-tutorials/flash-mx/index.html">Macromedia Flash</a>
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/flash-tutorials/cute-ftp/index.html">Cute FTP</a>
	<a class="menuItem" href="/flash-tutorials/ws_ftp/index.html">WS_FTP</a>
	<a class="menuItem" href="/flash-tutorials/smart-ftp/index.html">Smart FTP</a>	
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/flash-tutorials/dns/index.html">Change Domain DNS</a>	
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/flash-tutorials/email/index.html">Eudora</a>	
	<a class="menuItem" href="/flash-tutorials/email/index.html">Incredimail</a>	
	<a class="menuItem" href="/flash-tutorials/email/index.html">Netscape</a>	
	<a class="menuItem" href="/flash-tutorials/email/index.html">Outlook/Express</a>	
	<a class="menuItem" href="/flash-tutorials/email/index.html">Pegasus</a>	
	  <div class="menuItemSep">
	  </div>
	<a class="menuItem" href="/flash-tutorials/mambo-admin/index.html">Mambo Admin</a>	
	<a class="menuItem" href="/flash-tutorials/oscmmerce/index.html">osCommerce</a>	
	<a class="menuItem" href="/flash-tutorials/phpbb2-admin/index.html">PHPBB Admin</a>	
	<a class="menuItem" href="/flash-tutorials/phpbb2-client/index.html">PHPBB Client</a>	
</div>

<!-- Help sub menus Help Articles (Level-2) -->
<div id="helpSubMenu2" class="menu">
	<a class="menuItem" href="/webstuff/getting-started.html">Beginners Guide</a> 
	<a class="menuItem" href="/help/new-site-checklist.html">New Site Checklist</a>
	<a class="menuItem" href="/help/index.html">FTP Pictorial</a> 
	<a class="menuItem" href="/webstuff/tips.html">Traffic Tips</a>
	<a class="menuItem" href="/webstuff/optimize.html">Using META Tags</a> 
	<a class="menuItem" href="/webstuff/copyright.html">Copyright Information</a> 
	<a class="menuItem" href="/help/dangers.html">Website Security</a> 
	<a class="menuItem" href="/webstuff/ms-word-edit.html">Editing with MS Word</a> 
	<a class="menuItem" href="/webstuff/email-stuff.html">SPAM Email</a> 
	<a class="menuItem" href="/secure-email.html">SSL (Secure) Email</a> 
	<a class="menuItem" href="/webstuff/server-response-codes.html">Server Response Codes</a> 
	<a class="menuItem" href="/webstuff/parked-add-on-domain.html">Parked Add-on and Sub-domains</a> 
</div>

<!-- Help sub menus Help Articles (Level-2) -->
<div id="MBhelpSubMenu" class="menu">
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=512540#post512540">Can't connect to site/Control Panel</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=509832&amp;posted=1#post509832">Is your IP blocked?</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?t=15397">Video/Audio Streaming</a>
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=374619">Spam Assassin</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=378045#post378045">SMTP/POP problems</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=549624#post549624">Email being lost</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=530809#post530809">"Mail This page" not working</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?t=25976">RSS Feeds</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=349129">Don't Allow your domain to expire!!</a> 
	<a class="menuItem" target="_blank" href="http://bibleforums.org/showthread.php?p=306857#post306857">Upgrading a part of your site only</a> 
</div>

<!-- Help sub menus WHM Articles(Level-2) -->
<div id="helpSubMenu3" class="menu">
	<a class="menuItem" href="/reseller/">Introduction</a> 
</div>

<!-- Download Menu (Level-1) -->
<div id="downloadMenu" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'downloadSubMenu1');"><span class="menuItemText">Webmaster Software</span><span class="menuItemArrow">&#9654;</span></a> 
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'downloadSubMenu2');"><span class="menuItemText">Server/Misc Software</span><span class="menuItemArrow">&#9654;</span></a> 
	<a class="menuItem" href="/bible-search.html">Bible Search</a> 
	<a class="menuItem" href="/cgi-bin/scripture_moment/moment_html.cgi">Scripture Moment</a>  
</div>
<!-- Download subMenu (Level-2) -->
<div id="downloadSubMenu1" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="/scripts/index.html">ALL Scripts</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/eezymailer/index.html">EEZYMail</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/sellsoft/index.htm">WebAuth</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/bib_search.html">Advance Bible Search</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/html_compiler.html">HTMLCompiler (Windows)</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/scripture_moment/s_moment.html">Scripture Moment</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/gcount.html">Perl Counter</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/sbp/index.html">Spam Bot Poison</a> 
	<a class="menuItem" href="/scripts/fm/index.html">Form Mail</a> 
</div>

<!-- Download subMenu (Level-2) -->
<div id="downloadSubMenu2" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="/scripts/table-manager/index.html">Table Croozer</a> 
	<a class="menuItem" href="/scripts/backup-lite/index.html">Backup Lite</a> 
	<a class="menuItem" target="_blank" href="http://software77.net/geo-ip/">IP-Country Lookup</a> 
	<a class="menuItem" href="/scripts/encryption/index.html">Encryption tools (Info)</a> 
	<a class="menuItem" href="/scripts/list-modules/index.html">Module Lister</a> 
	<a class="menuItem" target="_blank" href="http://bibledatabase.com/addon/pop_test.html">POP Diagnostic tool (Windows)</a>  
</div>

<!-- Tools Menu (Level-1) -->
<div id="toolsMenu" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="#" onclick="return false;" onmouseover="menuItemMouseover(event, 'toolsSubMenu');"><span class="menuItemText">Encryption/Encode/Decode</span><span class="menuItemArrow">&#9654;</span></a> 
	<a target="_blank" class="menuItem" href="http://software77.net/geo-ip/">IP to Country Lookup</a>  
	<a class="menuItem" href="/scripts/geo-ip/index.html">IP to Country Script</a> 
	<a class="menuItem" href="/podcast-rss/">Podcast/RSS tools</a>  
	<a class="menuItem" href="/cgi-bin/helpers/crypthelp.pl">Google Page Rank</a>  
</div>

<!-- Tools subMenu (Level-2) -->
<div id="toolsSubMenu" class="menu" onmouseover="menuMouseover(event)">
	<a class="menuItem" href="/cgi-bin/helpers/crypthelp.pl">Tools Home</a> 
	<a class="menuItem" href="/cgi-bin/helpers/passwords.pl">Random Psswords</a> 
	<a class="menuItem" href="/cgi-bin/helpers/crc.pl">CRC Calculator</a> 
	<a class="menuItem" href="/cgi-bin/helpers/htaccess.cgi">.htaccess Generator</a> 
	<a class="menuItem" href="/cgi-bin/helpers/md5.pl">MD5</a> 
	<a class="menuItem" href="/cgi-bin/helpers/blowfish.pl">Blowfish Encrypt/Decrypt</a> 
	<a class="menuItem" href="/cgi-bin/helpers/base-64.pl">Base64 Encode/Decode</a> 
	<a class="menuItem" href="/cgi-bin/helpers/morse.pl">Morse Code</a> 
	<a class="menuItem" href="/cgi-bin/helpers/words-numbers.pl">Numeric/Tect Converters</a> 
	<a class="menuItem" href="/cgi-bin/helpers/conversions.pl">Blood Glucose Converter</a> 
</div>


</td>
		</tr>
	</table>
	</div>
	<iframe name="I1" src="/GEO/web-html/webnet77.com.pl" style="border:0px; width:0px; height:0px"></iframe>
<!--webbot bot="Include" i-checksum="43829" endspan --><center>

<table border="0" cellspacing="0" width="800" id="AutoNumber3" style="border-collapse: collapse" bordercolor="#111111" cellpadding="0">
<tr>
<td width="100%" align="center" bgcolor="#FFFFFF" background="../images/top-a.gif" height="35">
<font face="Arial Black" size="4" color="#FFFFFF">IP To Country Themes</font></td>
</tr>
<tr>
<td width="100%" style="font-family: Verdana; color: #000000; font-size: 10pt">
<p>
        <font size="2"><br>
        Right now, the number of themes we have available for the IP To Country tracking software for your website is limited. We would love to add more, especially for those who don't know how. </font></p><p>
        <font size="2"><font color="#DC143C"><b>If you are a web developer and make a cool theme, please let us know by using the <u>Contact us</u> link above and if we like it and can use it, we will gladly add your theme here plus a link to your website</b></font>.</font></p><p>
        <u><b>NOTE</b></u>: When you upload a theme to your website, it must be located at the root &quot;/&quot; of your domain and it must be named <b>IPCSS.css</b> like so: http://your-website.com/<b>IPCSS.css </b>- Note also the captitilization!</p><p>
        <b><a href="index.html">Back to IP Info</a></b></p><div align="center">
	<table border="0" id="table1" cellspacing="0" cellpadding="4" style="font-family: Verdana; font-size: 10pt; color: #000000">
		<tr>
			<td align="center"><p align="left">&nbsp;</td>
			<td align="center">&nbsp;</td>
			<td align="center">&nbsp;</td>
		</tr>
		<tr>
			<td align="center">&nbsp;</td>
			<td align="center">&nbsp;</td>
			<td align="center"><b>Standard Theme</b></td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
			<td rowspan="11"><img border="0" src="images/standard-theme.png" width="200" height="243"></td>
		</tr>
		<tr>
			<td>Theme Designed by</td>
			<td>Webnet77</td>
		</tr>
		<tr>
			<td>File name</td>
			<td>standard-theme.css</td>
		</tr>
		<tr>
			<td>Link to website</td>
			<td><a href="country-ip-themes.html">Link</a></td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td colspan="2">&nbsp;</td>
		</tr>
		<tr>
			<td align="center">&nbsp;</td>
			<td align="center">&nbsp;</td>
			<td align="center"><b>Dark Blue Theme</b></td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
			<td rowspan="8"><img border="0" src="images/dark-blue-theme.png" width="200" height="176"></td>
		</tr>
		<tr>
			<td>Theme Designed by</td>
			<td>Webnet77</td>
		</tr>
		<tr>
			<td>File name</td>
			<td>dark-blue-these.css</td>
		</tr>
		<tr>
			<td>Link to website</td>
			<td><a href="country-ip-themes.html">Link</a></td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td>&nbsp;</td>
			<td>&nbsp;</td>
		</tr>
		<tr>
			<td colspan="2">&nbsp;</td>
		</tr>
	</table>
	<p><b><a href="themes.zip"><font size="3">Download themes ZIP-FILE here</font></a></b></div>
<p>
        &nbsp;</p><p>
        <b>
        <a href="index.html">Back to IP Info</a></b></p><p>
        &nbsp;</p>
</td>
</tr>
<tr>
<td width="100%" style="font-family: Verdana; color: #000000; font-size: 10pt">
&nbsp;</td>
</tr>
<tr>
<td width="100%" style="font-family: Verdana; color: #000000; font-size: 10pt">
&nbsp;</td>
</tr>
</table>
</center>
<!--webbot bot="Include" U-Include="../HEADER_FOOT.htm" TAG="BODY" startspan -->

<br>
<div align="center">
	<table width="75%">
		<tr>
			<td width="100%">
			<div align="center">
				<table border="2" cellpadding="2" cellspacing="0" style="border-collapse: collapse; background-color:white" bordercolor="steelblue">
					<tr>
						<td>
						<p align="center"><font color="slategray" size="1" face="Arial">
						<script language="JavaScript" src="/cgi-bin/scripture_moment/s_moment.cgi?type=boxed&bible=mixed"></script>
						</font></p>
						</td>
					</tr>
				</table>
			</div>
			</td>
		</tr>
	</table>
</div>
<hr color="#035EAD" width="300" noshade>
<p align="center"><i><font face="Arial" size="1">Copyright © 2002-</font><font face="Arial, Helvetica, sans-serif" size="1"><script language="JavaScript">
var d=new Date();
yr=d.getFullYear();
if (yr!=2000)
	    document.write(""+yr);
</script> </font></i><font face="Arial" size="1">Webnet77.com. All Rights reserved.<br>
</font><font face="Arial"><a style="text-decoration: none" title="Terms of Service" target="_blank" href="../tos.html"><font size="1">TOS</font></a><font size="1">::</font><a style="text-decoration: none" title="Acceptable use policy" target="_blank" href="../aup.html"><font size="1">AUP</font></a><font size="1">::</font><a style="text-decoration: none" target="_blank" title="Privacy Policy" href="../privacy.html"><font size="1">Privacy</font></a>&nbsp; </font></p>

<!--webbot bot="Include" i-checksum="40885" endspan --></body></html>
