Skip to content
Permalink
main
Switch branches/tags
Go to file
 
 
Cannot retrieve contributors at this time
<html>
<head>
<title>The Online Business Directory for the Piedmont Triad Region</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script LANGUAGE="JavaScript" FPTYPE="dynamicanimation">
<!--
// If you want to change this script, you must also make the following
// changes so that FrontPage will not overwrite your new script.
// In the script tag, change type="dynamicanimation" to type="mydynamicanimation"
// In the first script statement, change "dynamicanimation" to "mydynamicanimation"
// Throughout the HTML content, change dynamicanimation= to mydynamicanimation=
// Change function dynAnimation to function mydynAnimation
// In the body tag, change onload="dynAnimation()" to onload="mydynAnimation()"
dynamicanimAttr = "dynamicanimation"
animateElements = new Array()
currentElement = 0
speed = 0
stepsZoom = 8
stepsWord = 8
stepsFly = 12
stepsSpiral = 16
steps = stepsZoom
step = 0
outString = ""
function dynAnimation()
{
var ms = navigator.appVersion.indexOf("MSIE")
ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)
if(!ie4)
{
if((navigator.appName == "Netscape") &&
(parseInt(navigator.appVersion.substring(0, 1)) >= 4))
{
for (index=document.layers.length-1; index >= 0; index--)
{
layer=document.layers[index]
if (layer.left==10000)
layer.left=0
}
}
return
}
for (index=document.all.length-1; index >= document.body.sourceIndex; index--)
{
el = document.all[index]
animation = el.getAttribute(dynamicanimAttr, false)
if(null != animation)
{
if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
{
ih = el.innerHTML
outString = ""
i1 = 0
iend = ih.length
while(true)
{
i2 = startWord(ih, i1)
if(i2 == -1)
i2 = iend
outWord(ih, i1, i2, false, "")
if(i2 == iend)
break
i1 = i2
i2 = endWord(ih, i1)
if(i2 == -1)
i2 = iend
outWord(ih, i1, i2, true, animation)
if(i2 == iend)
break
i1 = i2
}
document.all[index].innerHTML = outString
document.all[index].style.posLeft = 0
document.all[index].setAttribute(dynamicanimAttr, null)
}
if(animation == "zoomIn" || animation == "zoomOut")
{
ih = el.innerHTML
outString = "<SPAN " + dynamicanimAttr + "=\"" + animation + "\" style=\"position: relative; left: 10000;\">"
outString += ih
outString += "</SPAN>"
document.all[index].innerHTML = outString
document.all[index].style.posLeft = 0
document.all[index].setAttribute(dynamicanimAttr, null)
}
}
}
i = 0
for (index=document.body.sourceIndex; index < document.all.length; index++)
{
el = document.all[index]
animation = el.getAttribute(dynamicanimAttr, false)
if (null != animation)
{
if(animation == "flyLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = 0
}
else if(animation == "flyRight")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = 0
}
else if(animation == "flyTop" || animation == "dropWord")
{
el.style.posLeft = 0
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyBottom")
{
el.style.posLeft = 0
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "flyTopLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyTopRight" || animation == "flyTopRightWord")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "flyBottomLeft")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "flyBottomRight" || animation == "flyBottomRightWord")
{
el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
}
else if(animation == "spiral")
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
}
else if(animation == "zoomIn")
{
el.style.posLeft = 10000
el.style.posTop = 0
}
else if(animation == "zoomOut")
{
el.style.posLeft = 10000
el.style.posTop = 0
}
else
{
el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
el.style.posTop = 0
}
el.initLeft = el.style.posLeft
el.initTop = el.style.posTop
animateElements[i++] = el
}
}
window.setTimeout("animate();", speed)
}
function offsetLeft(el)
{
x = el.offsetLeft
for (e = el.offsetParent; e; e = e.offsetParent)
x += e.offsetLeft;
return x
}
function offsetTop(el)
{
y = el.offsetTop
for (e = el.offsetParent; e; e = e.offsetParent)
y += e.offsetTop;
return y
}
function startWord(ih, i)
{
for(tag = false; i < ih.length; i++)
{
c = ih.charAt(i)
if(c == '<')
tag = true
if(!tag)
return i
if(c == '>')
tag = false
}
return -1
}
function endWord(ih, i)
{
nonSpace = false
space = false
while(i < ih.length)
{
c = ih.charAt(i)
if(c != ' ')
nonSpace = true
if(nonSpace && c == ' ')
space = true
if(c == '<')
return i
if(space && c != ' ')
return i
i++
}
return -1
}
function outWord(ih, i1, i2, dyn, anim)
{
if(dyn)
outString += "<SPAN " + dynamicanimAttr + "=\"" + anim + "\" style=\"position: relative; left: 10000;\">"
outString += ih.substring(i1, i2)
if(dyn)
outString += "</SPAN>"
}
function animate()
{
el = animateElements[currentElement]
animation = el.getAttribute(dynamicanimAttr, false)
step++
if(animation == "spiral")
{
steps = stepsSpiral
v = step/steps
rf = 1.0 - v
t = v * 2.0*Math.PI
rx = Math.max(Math.abs(el.initLeft), 200)
ry = Math.max(Math.abs(el.initTop), 200)
el.style.posLeft = Math.ceil(-rf*Math.cos(t)*rx)
el.style.posTop = Math.ceil(-rf*Math.sin(t)*ry)
}
else if(animation == "zoomIn")
{
steps = stepsZoom
el.style.fontSize = Math.ceil(50+50*step/steps) + "%"
el.style.posLeft = 0
}
else if(animation == "zoomOut")
{
steps = stepsZoom
el.style.fontSize = Math.ceil(100+200*(steps-step)/steps) + "%"
el.style.posLeft = 0
}
else
{
steps = stepsFly
if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
steps = stepsWord
dl = el.initLeft / steps
dt = el.initTop / steps
el.style.posLeft = el.style.posLeft - dl
el.style.posTop = el.style.posTop - dt
}
if (step >= steps)
{
el.style.posLeft = 0
el.style.posTop = 0
currentElement++
step = 0
}
if(currentElement < animateElements.length)
window.setTimeout("animate();", speed)
}
//-->
</script></head>
<body link="#9C1C08" vlink="#9C1C08" alink="#000000" background="images/rghtbor.gif" onload="dynAnimation()">
<table BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="514">
<tr>
<td><img src="images/images/biz_1triadpages_business_re-01-01.jpg" alt="biz_1triadpages_business_re-01-01.jpg (3725 bytes)" WIDTH="171" HEIGHT="65"></td>
<td><img src="images/images/biz_1triadpages_business_re-01-02.jpg" alt="biz_1triadpages_business_re-01-02.jpg (3767 bytes)" WIDTH="172" HEIGHT="65"></td>
<td><img src="images/images/biz_1triadpages_business_re-01-03.jpg" alt="biz_1triadpages_business_re-01-03.jpg (4831 bytes)" WIDTH="171" HEIGHT="65"></td>
</tr>
<tr>
<td><img src="images/images/biz_1triadpages_business_re-02-01.jpg" alt="biz_1triadpages_business_re-02-01.jpg (3187 bytes)" WIDTH="171" HEIGHT="65"></td>
<td><img src="images/images/biz_1triadpages_business_re-02-02.jpg" alt="biz_1triadpages_business_re-02-02.jpg (3140 bytes)" WIDTH="172" HEIGHT="65"></td>
<td><img src="images/images/biz_1triadpages_business_re-02-03.jpg" alt="biz_1triadpages_business_re-02-03.jpg (4287 bytes)" WIDTH="171" HEIGHT="65"></td>
</tr>
</table>
<table border="0" width="612" cellspacing="4" cellpadding="0" height="512">
<tr>
<td width="118" height="512" valign="top" align="left" background="images/rghtbor_1.gif"><p align="center" dynamicanimation="flyBottomLeft" style="position: relative !important; left: 10000 !important"><!--webbot bot="ImageMap" circle="(58,44) 44 http://www.twincitydiner.com" src="mini/images/tcd_4.gif" alt="tcd_4.gif (4626 bytes)" border="0" startspan --><MAP NAME="FrontPageMap"><AREA SHAPE="CIRCLE" COORDS="58, 44, 44" HREF="http://www.twincitydiner.com"></MAP><a href="_vti_bin/shtml.exe/register.htm/map"><img height="91" ismap alt="tcd_4.gif (4626 bytes)" border="0" src="mini/images/tcd_4.gif" usemap="#FrontPageMap" width="115"></a><!--webbot bot="ImageMap" endspan i-checksum="8861" --></p>
<p align="center"><br>
<!--webbot bot="ImageMap" rectangle="(5,6) (84,73) synaps-it.htm" src="images/images/synaps_it_1synaps___it_1.jpg" alt="Synaps-it! Impression Program" border="0" startspan --><MAP NAME="FrontPageMap1"><AREA SHAPE="RECT" COORDS="5, 6, 84, 73" HREF="synaps-it.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map1"><img height="81" ismap alt="Synaps-it! Impression Program" border="0" src="images/images/synaps_it_1synaps___it_1.jpg" usemap="#FrontPageMap1" width="86"></a><!--webbot bot="ImageMap" endspan i-checksum="54910" --></p>
<p align="center">&nbsp;</td>
<td width="390" height="512" valign="top" align="left"><p align="center"><font face="Arial">
<applet CODE="joymarquee.class" WIDTH="380" HEIGHT="82">
<param name="GENERATOR" value="CREATED WITH THE APPLET MARQUEE WIZARD WWW.SILICONJOY.COM">
<param name="GENERAL" value="25|3|FFFFFF|20|0|Loading... |000000|FFFFFF">
<param name="BORDER" value="0|C0C0C0|1|1">
<param name="0" value="tp_1triadpages.jpg|000000|2|5|0|0|0|000000">
<param name="1" value="tp_2triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="2" value="tp_3triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="3" value="tp_4triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="4" value="tp_5triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="5" value="tp_6triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="6" value="tp_7triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="7" value="tp_8triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="8" value="tp_9triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="9" value="tp_10triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="10" value="tp_11triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="11" value="tp_12triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="12" value="tp_13triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="13" value="tp_14triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="14" value="tp_15triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="15" value="tp_16triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="16" value="tp_17triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="17" value="tp_18triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="18" value="tp_19triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="19" value="tp_20triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="20" value="tp_21triadpages.jpg|FFFFFF|2|5|0|0|0|FFFFFF">
<param name="21" value="tp_22triadpages.jpg|FFFFFF|1000|500|0|0|0|FFFFFF">
<param name="22" value="tp_23the_totally_real.jpg|FFFFFF|1000|500|0|0|0|FFFFFF">
<param name="23" value="tp_25un_yellow_pages.jpg|FFFFFF|3000|500|15|1|1|0|0|0|0|FF0000| | |-1| | | |10|10| |0|0|12|000000|000000|FFFFFF|FFFFFF">
<param name="24" value="tp_26register_your_business.jpg|FFFFFF|2500|500|0|0|0|FFFFFF">
</applet>
</font></p>
<h3 align="center"><small><font face="Arial"><u><em>No where</em></u> can you find as much
for as little!</font></small></h3>
<p align="left"><font face="Arial"><small><strong>Putting your business on the web</strong>
has never been easier, let <font color="#38A3D6">TriadHost</font> get you started today at
no cost!&nbsp; Just fill in the form, submit it, and within forty eight hours your
business will be listed on the web with the Triads premiere online community and business
directory,<font color="#38A3D6"> TriadHost</font><font color="#000000">!</font>&nbsp;
That's all there is to it!&nbsp; Here's what you receive <em><strong>free of charge</strong>
</em>in your listing!&nbsp; Business name, address, phone number, hours of operation, an
email link for customer contact and up to a <strong><em>125 word description of your
business or service!</em></strong></small></font></p>
<p align="center" dynamicanimation="spiral" style="position: relative !important; left: 10000 !important"><small><font face="Arial"><!--webbot bot="ImageMap" rectangle="(3,2) (357,50) cat_i.htm#Impact" src="images/impact-white back.gif" alt="impact-white back.gif (4784 bytes)" border="0" startspan --><MAP NAME="FrontPageMap2"><AREA SHAPE="RECT" COORDS="3, 2, 357, 50" HREF="cat_i.htm#Impact"></MAP><a href="_vti_bin/shtml.exe/register.htm/map2"><img height="53" ismap alt="impact-white back.gif (4784 bytes)" border="0" src="images/impact-white%20back.gif" usemap="#FrontPageMap2" width="360"></a><!--webbot bot="ImageMap" endspan i-checksum="8102" --></font></small></p>
<p align="center"><font face="Arial"><em><small>Keep the community business directory
growing!&nbsp; We'll help the customer find you!</small><br>
<strong><small>Submit this form now!</small></strong></em></font></p>
<p align="left">&nbsp;</p>
<!--webbot BOT="GeneratedScript" PREVIEW=" " startspan --><script Language="JavaScript"><!--
function FrontPage_Form1_Validator(theForm)
{
if (theForm.T16.value == "")
{
alert("Please enter a value for the \"Contact\" field.");
theForm.T16.focus();
return (false);
}
if (theForm.T2.value == "")
{
alert("Please enter a value for the \"T2\" field.");
theForm.T2.focus();
return (false);
}
if (theForm.T2.value.length < 1)
{
alert("Please enter at least 1 characters in the \"T2\" field.");
theForm.T2.focus();
return (false);
}
if (theForm.T2.value.length > 50)
{
alert("Please enter at most 50 characters in the \"T2\" field.");
theForm.T2.focus();
return (false);
}
if (theForm.T3.value == "")
{
alert("Please enter a value for the \"Zip\" field.");
theForm.T3.focus();
return (false);
}
if (theForm.T3.value.length < 5)
{
alert("Please enter at least 5 characters in the \"Zip\" field.");
theForm.T3.focus();
return (false);
}
if (theForm.T3.value.length > 5)
{
alert("Please enter at most 5 characters in the \"Zip\" field.");
theForm.T3.focus();
return (false);
}
var checkOK = "0123456789-.,";
var checkStr = theForm.T3.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"Zip\" field.");
theForm.T3.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"T3\" field.");
theForm.T3.focus();
return (false);
}
if (theForm.T4.value.length < 4)
{
alert("Please enter at least 4 characters in the \"Zip4\" field.");
theForm.T4.focus();
return (false);
}
if (theForm.T4.value.length > 4)
{
alert("Please enter at most 4 characters in the \"Zip4\" field.");
theForm.T4.focus();
return (false);
}
var checkOK = "0123456789-.,";
var checkStr = theForm.T4.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"Zip4\" field.");
theForm.T4.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"T4\" field.");
theForm.T4.focus();
return (false);
}
if (theForm.T5.value == "")
{
alert("Please enter a value for the \"Area\" field.");
theForm.T5.focus();
return (false);
}
if (theForm.T5.value.length < 3)
{
alert("Please enter at least 3 characters in the \"Area\" field.");
theForm.T5.focus();
return (false);
}
if (theForm.T5.value.length > 3)
{
alert("Please enter at most 3 characters in the \"Area\" field.");
theForm.T5.focus();
return (false);
}
var checkOK = "0123456789-.,";
var checkStr = theForm.T5.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"Area\" field.");
theForm.T5.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"T5\" field.");
theForm.T5.focus();
return (false);
}
if (theForm.T6.value == "")
{
alert("Please enter a value for the \"pre\" field.");
theForm.T6.focus();
return (false);
}
if (theForm.T6.value.length < 3)
{
alert("Please enter at least 3 characters in the \"pre\" field.");
theForm.T6.focus();
return (false);
}
if (theForm.T6.value.length > 3)
{
alert("Please enter at most 3 characters in the \"pre\" field.");
theForm.T6.focus();
return (false);
}
var checkOK = "0123456789-.,";
var checkStr = theForm.T6.value;
var allValid = true;
var decPoints = 0;
var allNum = "";
for (i = 0; i < checkStr.length; i++)
{
ch = checkStr.charAt(i);
for (j = 0; j < checkOK.length; j++)
if (ch == checkOK.charAt(j))
break;
if (j == checkOK.length)
{
allValid = false;
break;
}
if (ch == ".")
{
allNum += ".";
decPoints++;
}
else if (ch != ",")
allNum += ch;
}
if (!allValid)
{
alert("Please enter only digit characters in the \"pre\" field.");
theForm.T6.focus();
return (false);
}
if (decPoints > 1)
{
alert("Please enter a valid number in the \"T6\" field.");
theForm.T6.focus();
return (false);
}
if (theForm.T7.value == "")
{
alert("Please enter a value for the \"Number\" field.");
theForm.T7.focus();
return (false);
}
if (theForm.T7.value.length < 4)
{
alert("Please enter at least 4 characters in the \"Number\" field.");
theForm.T7.focus();
return (false);
}
if (theForm.T7.value.length > 4)
{
alert("Please enter at most 4 characters in the \"Number\" field.");
theForm.T7.focus();
return (false);
}
if (theForm.S1.value == "")
{
alert("Please enter a value for the \"Description\" field.");
theForm.S1.focus();
return (false);
}
if (theForm.T8.value == "")
{
alert("Please enter a value for the \"Monday\" field.");
theForm.T8.focus();
return (false);
}
if (theForm.T9.value == "")
{
alert("Please enter a value for the \"Tuesday\" field.");
theForm.T9.focus();
return (false);
}
if (theForm.T10.value == "")
{
alert("Please enter a value for the \"Wednesday\" field.");
theForm.T10.focus();
return (false);
}
if (theForm.T11.value == "")
{
alert("Please enter a value for the \"Thursday\" field.");
theForm.T11.focus();
return (false);
}
if (theForm.T12.value == "")
{
alert("Please enter a value for the \"Friday\" field.");
theForm.T12.focus();
return (false);
}
if (theForm.T13.value == "")
{
alert("Please enter a value for the \"Saturday\" field.");
theForm.T13.focus();
return (false);
}
if (theForm.T14.value == "")
{
alert("Please enter a value for the \"Sunday\" field.");
theForm.T14.focus();
return (false);
}
return (true);
}
//--></script><!--webbot BOT="GeneratedScript" endspan --><form method="POST" action="_vti_bin/shtml.exe/register.htm" onsubmit="return FrontPage_Form1_Validator(this)" name="FrontPage_Form1" webbot-action="--WEBBOT-SELF--">
<!--webbot bot="SaveResults" U-File="_private/form_results.txt" S-Format="TEXT/PRE" S-Label-Fields="TRUE" B-Reverse-Chronology="FALSE" S-Email-Format="TEXT/PRE" B-Email-Label-Fields="TRUE" S-Builtin-Fields S-Email-Address="mark@triadhost.com" startspan --><input TYPE="hidden" NAME="VTI-GROUP" VALUE="0"><!--webbot bot="SaveResults" endspan i-checksum="43374" --><p><font face="Arial"><small><strong>Business name:</strong><br>
<input type="text" name="T1" size="20"></small></font></p>
<p><font face="Arial"><small><strong>Contact Name:<br>
<!--webbot bot="Validation" s-display-name="Contact" b-value-required="TRUE" --><input type="text" name="T16" size="20"></strong></small></font></p>
<p><font face="Arial"><small><strong>Business address:</strong><br>
<!--webbot bot="Validation" b-value-required="TRUE" i-minimum-length="1" i-maximum-length="50" --><input type="text" name="T2" size="30" maxlength="50"></small></font></p>
<p><font face="Arial"><small><strong>City:</strong><br>
<select name="D1" size="1">
<option selected value="new">Select or Add your community&gt;&gt;</option>
<option value="Advance">Advance</option>
<option value="Arcadia">Arcadia</option>
<option value="Archdale">Archdale</option>
<option value="Bethania">Bethania</option>
<option value="Bixby">Bixby</option>
<option value="Clemmons">Clemmons</option>
<option value="Eller">Eller</option>
<option value="Enon">Enon</option>
<option value="Farmington">Farmington</option>
<option value="Flint Hill">Flint Hill</option>
<option value="Friendship">Friendship</option>
<option value="Greensboro">Greensboro</option>
<option value="Guilford">Guilford</option>
<option value="High Point">High Point</option>
<option value="Jamestown">Jamestown</option>
<option value="Kernersville">Kernersville</option>
<option value="Lewisville">Lewisville</option>
<option value="Pfafftown">Pfafftown</option>
<option value="Pleasant Garden">Pleasant Garden</option>
<option value="Redland">Redland</option>
<option value="Ridge">Ridge</option>
<option value="Sedalia">Sedalia</option>
<option value="Sedgefield">Sedgefield</option>
<option value="Summerfield">Summerfield</option>
<option value="Thomasville">Thomasville</option>
<option value="Trinity">Trinity</option>
<option value="Union Cross">Union Cross</option>
<option value="Wallberg">Wallberg</option>
<option value="Walkertown">Walkertown</option>
<option value="Winston-Salem">Winston-Salem</option>
<option value="A friend outside the Triad (find me by zip code)">A friend outside the Triad (find me by zip code)</option>
<option value="Add my city! (find me by zip code)">Add my city! (find me by zip code)</option>
</select></small></font></p>
<p>&nbsp;</p>
<p><font face="Arial"><small><strong>Zip Code:</strong><br>
<!--webbot bot="Validation" s-display-name="Zip" s-data-type="Number" s-number-separators=",." b-value-required="TRUE" i-minimum-length="5" i-maximum-length="5" --><input type="text" name="T3" size="5" maxlength="5">-<!--webbot bot="Validation" s-display-name="Zip4" s-data-type="Number" s-number-separators=",." i-minimum-length="4" i-maximum-length="4" --><input type="text" name="T4" size="4" maxlength="4">(If no 4
digit zip extension enter 0000)</small></font></p>
<p><font face="Arial"><small><strong>Business phone:</strong><br>
<!--webbot bot="Validation" s-display-name="Area" s-data-type="Number" s-number-separators=",." b-value-required="TRUE" i-minimum-length="3" i-maximum-length="3" --><input type="text" name="T5" size="3" maxlength="3">-<!--webbot bot="Validation" s-display-name="pre" s-data-type="Number" s-number-separators=",." b-value-required="TRUE" i-minimum-length="3" i-maximum-length="3" --><input type="text" name="T6" size="3" maxlength="3">-<!--webbot bot="Validation" s-display-name="Number" b-value-required="TRUE" i-minimum-length="4" i-maximum-length="4" --><input type="text" name="T7" size="4" maxlength="4"></small></font></p>
<p><font face="Arial"><small><strong>Business description or type:</strong> <small>(Remember,
this is how we let people know what your business does or provides.&nbsp; Be specific and
limit&nbsp; your description to 125 words or less. Don't sloganize, it only decreases the
the percentage of hits to your business generated by a customer query.)</small></small></font></p>
<p><font face="Arial"><small><!--webbot bot="Validation" s-display-name="Description" b-value-required="TRUE" --><textarea rows="5" name="S1" cols="30"></textarea></small></font></p>
<p><font face="Arial"><small><strong>Business hours:</strong><br>
<small>(example; 9-5, type &quot;closed&quot; on days applicable)</small><br>
<br>
Monday<br>
<!--webbot bot="Validation" s-display-name="Monday" b-value-required="TRUE" --><input type="text" name="T8" size="20"><br>
Tuesday<br>
<!--webbot bot="Validation" s-display-name="Tuesday" b-value-required="TRUE" --><input type="text" name="T9" size="20"><br>
Wednesday<br>
<!--webbot bot="Validation" s-display-name="Wednesday" b-value-required="TRUE" --><input type="text" name="T10" size="20"><br>
Thursday<br>
<!--webbot bot="Validation" s-display-name="Thursday" b-value-required="TRUE" --><input type="text" name="T11" size="20"><br>
Friday<br>
<!--webbot bot="Validation" s-display-name="Friday" b-value-required="TRUE" --><input type="text" name="T12" size="20"><br>
Saturday<br>
<!--webbot bot="Validation" s-display-name="Saturday" b-value-required="TRUE" --><input type="text" name="T13" size="20"><br>
Sunday<br>
<!--webbot bot="Validation" s-display-name="Sunday" b-value-required="TRUE" --><input type="text" name="T14" size="20"></small></font></p>
<p><font face="Arial"><small><strong>Comments to TriadHost:</strong><br>
<textarea rows="2" name="S2" cols="30"></textarea></small></font></p>
<p><font face="Arial"><small><strong>Email Address:</strong><br>
<input type="text" name="T15" size="30"></small></font></p>
<p><input type="submit" value="Put Us on the Web!" name="B1"><input type="reset" value="Reset Form" name="B2"></p>
</form>
</td>
<td valign="top" align="left"><table BORDER="0" CELLPADDING="0" CELLSPACING="0" WIDTH="90">
<tr>
<td><!--webbot bot="ImageMap" circle="(43,29) 27 triadpages.htm" src="images/images/main_navtriadpages-01-01.gif" border="0" startspan --><MAP NAME="FrontPageMap3"><AREA SHAPE="CIRCLE" COORDS="43, 29, 27" HREF="triadpages.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map3"><img height="57" ismap border="0" src="images/images/main_navtriadpages-01-01.gif" usemap="#FrontPageMap3" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="56815" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(42,27) 27 tcam_1.htm" src="images/images/main_navtriadpages-02-01.gif" border="0" startspan --><MAP NAME="FrontPageMap4"><AREA SHAPE="CIRCLE" COORDS="42, 27, 27" HREF="tcam_1.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map4"><img height="56" ismap border="0" src="images/images/main_navtriadpages-02-01.gif" usemap="#FrontPageMap4" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="58164" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(43,28) 28 http://www.triadhost.com:8080/" src="images/images/main_navtriadpages-03-01.gif" border="0" startspan --><MAP NAME="FrontPageMap5"><AREA SHAPE="CIRCLE" COORDS="43, 28, 28" HREF="index.html"></MAP><a href="_vti_bin/shtml.exe/register.htm/map5"><img height="57" ismap border="0" src="images/images/main_navtriadpages-03-01.gif" usemap="#FrontPageMap5" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="24501" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(44,28) 28 http://www.triadhost.com/mmm/wwwboard.html" src="images/images/main_navtriadpages-04-01.gif" border="0" startspan --><MAP NAME="FrontPageMap6"><AREA SHAPE="CIRCLE" COORDS="44, 28, 28" HREF="mmm/wwwboard.html"></MAP><a href="_vti_bin/shtml.exe/register.htm/map6"><img height="56" ismap border="0" src="images/images/main_navtriadpages-04-01.gif" usemap="#FrontPageMap6" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="28508" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(43,26) 26 news.htm" src="images/images/main_navtriadpages-05-01.gif" border="0" startspan --><MAP NAME="FrontPageMap7"><AREA SHAPE="CIRCLE" COORDS="43, 26, 26" HREF="news.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map7"><img height="55" ismap border="0" src="images/images/main_navtriadpages-05-01.gif" usemap="#FrontPageMap7" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="16442" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(42,29) 28 ebiz.htm" src="images/images/main_navtriadpages-06-01.gif" border="0" startspan --><MAP NAME="FrontPageMap8"><AREA SHAPE="CIRCLE" COORDS="42, 29, 28" HREF="ebiz.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map8"><img height="58" ismap border="0" src="images/images/main_navtriadpages-06-01.gif" usemap="#FrontPageMap8" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="16816" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(44,29) 26 whne.htm" src="images/images/main_navtriadpages-07-01.gif" border="0" startspan --><MAP NAME="FrontPageMap9"><AREA SHAPE="CIRCLE" COORDS="44, 29, 26" HREF="whne.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map9"><img height="55" ismap border="0" src="images/images/main_navtriadpages-07-01.gif" usemap="#FrontPageMap9" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="16551" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(42,26) 26 map.htm" src="images/images/main_navtriadpages-08-01.gif" border="0" startspan --><MAP NAME="FrontPageMap10"><AREA SHAPE="CIRCLE" COORDS="42, 26, 26" HREF="map.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map10"><img height="56" ismap border="0" src="images/images/main_navtriadpages-08-01.gif" usemap="#FrontPageMap10" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="1787" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(41,26) 26 sales.htm" src="images/images/main_navtriadpages-09-01.gif" border="0" startspan --><MAP NAME="FrontPageMap11"><AREA SHAPE="CIRCLE" COORDS="41, 26, 26" HREF="sales.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map11"><img height="55" ismap border="0" src="images/images/main_navtriadpages-09-01.gif" usemap="#FrontPageMap11" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="63610" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(44,28) 28 mailto:info@triadhost.com" src="images/images/main_navtriadpages-10-01.gif" border="0" startspan --><MAP NAME="FrontPageMap12"><AREA SHAPE="CIRCLE" COORDS="44, 28, 28" HREF="mailto:info@triadhost.com"></MAP><a href="_vti_bin/shtml.exe/register.htm/map12"><img height="57" ismap border="0" src="images/images/main_navtriadpages-10-01.gif" usemap="#FrontPageMap12" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="54218" --></td>
</tr>
<tr>
<td><!--webbot bot="ImageMap" circle="(43,27) 27 http://www.triadhost.com/global/meta101/index.htm" src="images/images/main_navtriadpages-11-01.gif" border="0" startspan --><MAP NAME="FrontPageMap13"><AREA SHAPE="CIRCLE" COORDS="43, 27, 27" HREF="global/meta101/index.htm"></MAP><a href="_vti_bin/shtml.exe/register.htm/map13"><img height="60" ismap border="0" src="images/images/main_navtriadpages-11-01.gif" usemap="#FrontPageMap13" width="90"></a><!--webbot bot="ImageMap" endspan i-checksum="40055" --></td>
</tr>
</table>
<dl>
<p>&nbsp;</p>
</dl>
</td>
</tr>
</table>
<dl>
<p><font face="Arial"><small>©TriadHost.Com All Rights Reserved.<br>
Help &amp; Information about this sight or services call:</small><br>
<small>(336)631-9067 or (800)303-2598. <a href="../../../../../../../triadhost/legal.htm"><small>Legal
Notices</small></a></small></font></p>
</dl>
</body>
</html>