Hello Everyone,
I'm having a DHTML compatablity issue w/Netscape. I was hoping you could
help; here's the problem:
This is an ordering system, the layers work with IE, but in Netscape I can
only get 11 Container layers to show, the others return "object undefined".
The Plan features and Plan Texts layers also give an "undefined error". I'm
not sure how these layers aren't being defined.
This is easier explained by looking at the code.
Any help would be great.
Thanks,
Curt
Code inserted below(It's long)
============================================================================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE>Rep Order Step 2 of 7: Choose A Plan</TITLE>
<META HTTP-EQUIV="Refresh"
CONTENT="900;url=../../functions/logout.cfm">
<META HTTP-EQUIV="Expires" CONTENT="Mon, 06 Jan 1990
00:00:01 GMT">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache">
<STYLE TYPE="text/css">
<!--
A {
text-decoration : none;
color : Blue;
}
A:Hover {
text-decoration : underline;
color : Red;
}
BODY {
font-family: Verdana,Arial,Helvetica;
font-size: 10pt;
}
P {
font-family: Verdana,Arial,Helvetica;
font-size: 10pt;
}
H3 {
font-size: 13pt;
}
A {
text-decoration: none;
color: Blue;
font-family: Verdana;
}
A:Hover {
text-decoration: underline;
color: Red;
}
.columnheader {
font-family: Verdana,Arial,Helvetica;
font-size: 10pt;
font-weight: bold;
}
TD, TR, TABLE, TH, .content {
font-family: Verdana,Arial,Helvetica;
font-size: 10pt;
}
.required {
color: red;
font-family: Verdana,Arial,Helvetica;
font-size: 10pt;
}
INPUT {
font-family: sans serif;
font-size: 10pt;
}
input.submit {
font-family: Verdana,Arial,Helvetica;
font-size: 10pt;
}
-->
</STYLE>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function OpenHelp(AnchorName) {
window.open("hlp_plan.cfm#" + AnchorName, "VSHelp",
"height=400,width=200,alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent
=0,directories=0,fullscreen=0,hotkeys=1,location=0,menubar=0,resizable=1,scr
ollbars=1,status=0,titlebar=1,toolbar=0,z-lock=0")
}
file://-->
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript" TYPE="text/javascript">
<!--
function CheckForm() {
var AreaCodeGood = false
var StandardPlanCount = 0
var FamilyPlanCount = 0
var PhoneCount = 0
dm1 = document.PlanForm
len = dm1.elements.length
for( i=0 ; i<len ; i++) {
obj = dm1.elements[i]
if (obj.selectedIndex) {
TextVal = obj.options[obj.selectedIndex].text
if (obj.name.indexOf("PlanID") != -1 &&
TextVal.indexOf("Family") != -1) {
FamilyPlanCount = FamilyPlanCount + 1
}
else if (obj.name.indexOf("PlanID") != -1) {
StandardPlanCount = StandardPlanCount + 1
}
else if (obj.name.indexOf("PhoneID") != -1) {
PhoneCount = PhoneCount + 1
}
}
else if (obj.name == "AreaCode" && (obj.checked || obj.type
== "hidden")) {
AreaCodeGood = true
}
}
if (!AreaCodeGood) {
alert("You must choose an Area Code for the service.")
return false
}
if (StandardPlanCount && FamilyPlanCount) {
alert("You have chosen Family Plus plans and other plans.
Family Plus plans can not be ordered together with other plans. Please
remove either the Family Plus plan or the standard plans.")
return false
} else if (!StandardPlanCount && !FamilyPlanCount) {
alert("You must choose at least one plan.")
return false
} else if (FamilyPlanCount && PhoneCount != 2) {
alert("When ordering a Family Plus plan, you must order 2
pieces of equipment.")
return false
} else if (StandardPlanCount && (StandardPlanCount != PhoneCount)) {
alert("You must choose equipment and plan for each set. You
cannot order equipment or plans seperately.")
return false
}
var MaxStandardPlans = 4
for( i=1 ; i <= MaxStandardPlans ; i++) {
var Plan = eval("document.PlanForm.PlanID" + i)
var Phone = eval("document.PlanForm.PhoneID" + i)
if ((Plan.selectedIndex && !Phone.selectedIndex) ||
(Phone.selectedIndex && !Plan.selectedIndex)) {
alert("You must choose a plan for each phone, and a
phone for each plan.")
return false
}
}
return true
}
function clearLayers(PartialLayerName) {
// These for loops hide all the description divs.
if (document.all) {
for( i=0 ; i < document.all.length ; i++) {
obj = document.all(i)
if (obj.id.indexOf(PartialLayerName) != -1) {
obj = obj.style
obj.visibility = "hidden"
}
}
} else if (document.layers) {
if (PartialLayerName == "PlanFeature") {
var LayerName = "PlanFeatures"
for( i=0 ; i <
document.layers.PlanFeatures.document.layers.length ; i++) {
Obj =
document.layers.PlanFeatures.document.layers[i]
Obj.visibility = "hidden"
}
} else {
var LayerName = "Container"
for( i=0 ; i <
document.layers.Container.document.layers.length ; i++) {
Obj = document.layers.Container.document.layers[i]
Obj.visibility = "hidden"
}
}
}
}
function showLayers(DropDown) {
var PID = DropDown.options[DropDown.selectedIndex].value
if (!PID) return false
if (DropDown.name.indexOf("PlanFeatureID") != -1) {
var LayerName = "Desc2PlanFeatureID" + PID
clearLayers("Desc2")
}
else if (DropDown.name.indexOf("PlanID") != -1) {
var LayerName = "DescPlanID" + PID
clearLayers("Desc")
}
else if (DropDown.name.indexOf("PhoneID") != -1) {
var LayerName = "DescPhoneID" + PID
clearLayers("Desc")
}
else if (DropDown.name.indexOf("PlanTextID") != -1) {
var LayerName = "Desc2PlanTextID" + PID
clearLayers("Desc2")
}
else {
alert("Problem! Unrecognized Object Name: " + DropDown.name)
return false
}
if (document.all) {
obj = eval("document.all." + LayerName + ".style")
obj.visibility = "visible"
} else if (document.layers) {
if (DropDown.name.indexOf("PlanFeatureID") != -1) {
obj =
eval("document.layers.PlanFeatures.document.layers." + LayerName)
} else {
obj =
eval("document.layers.Container.document.layers." + LayerName)
}
obj.visibility = "visible"
}
}
file://-->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#0000FF"
LEFTMARGIN=11 TOPMARGIN=10 MARGINWIDTH=10 MARGINHEIGHT=10
onLoad="window.focus()"> <FONT FACE="Verdana,Arial,Helvetica" SIZE="2">
<H3>Rep Order Step 2 of 7: Choose A Plan</H3>
<P>Choose the equipment and plans the customer wishes to order.<BR>
Standard plans and Family Plus plans cannot be ordered together.</P>
<FORM ACTION="_plan.cfm" NAME="PlanForm" METHOD="Post" onSubmit="return
CheckForm()">
<INPUT TYPE="Submit" VALUE="Continue"><BR><BR>
<TABLE BORDER="0" CELLSPACING="5" CELLPADDING="5"><TR>
<TD VALIGN="TOP">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"
WIDTH="405"><TR><TD VALIGN="TOP">
<TABLE CELLSPACING="1" CELLPADDING="3" BORDER="0" BGCOLOR="Black">
<TR BGCOLOR="Silver" CLASS="columnheader">
<TD COLSPAN="3">Standard Plans</TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD COLSPAN="3">The customer can order up to 4 sets.</TD>
</TR>
<TR BGCOLOR="Silver" CLASS="columnheader">
<TD>Set</TD>
<TD>Equipment</TD>
<TD>Plan</TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD ALIGN="CENTER"><FONT SIZE="5">1</FONT></TD>
<TD><SELECT NAME="PhoneID1" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION VALUE="104">Motorola 3682
$29.95</OPTION><OPTION VALUE="103">Nokia 5190 $69.95</OPTION><OPTION
VALUE="105">Nokia 6190 $129.95</OPTION><OPTION VALUE="47">Ericsson I888
$199.95</OPTION><OPTION VALUE="106">Motorola Timeport L7089
$299.95</OPTION><OPTION VALUE="0"> Sim Card $19.95</OPTION>
</SELECT></TD>
<TD><SELECT NAME="PlanID1" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION
VALUE="13">Personal</OPTION><OPTION VALUE="45">VoiceStream
Home</OPTION><OPTION VALUE="37">Personal Plus</OPTION><OPTION
VALUE="48">Professional</OPTION><OPTION VALUE="41">North America
300</OPTION><OPTION VALUE="42">North America 600</OPTION><OPTION
VALUE="43">North America 900</OPTION><OPTION VALUE="44">North America
1500</OPTION>
</SELECT></TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD ALIGN="CENTER"><FONT SIZE="5">2</FONT></TD>
<TD><SELECT NAME="PhoneID2" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION VALUE="104">Motorola 3682
$29.95</OPTION><OPTION VALUE="103">Nokia 5190 $69.95</OPTION><OPTION
VALUE="105">Nokia 6190 $129.95</OPTION><OPTION VALUE="47">Ericsson I888
$199.95</OPTION><OPTION VALUE="106">Motorola Timeport L7089
$299.95</OPTION><OPTION VALUE="0"> Sim Card $19.95</OPTION>
</SELECT></TD>
<TD><SELECT NAME="PlanID2" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION
VALUE="13">Personal</OPTION><OPTION VALUE="45">VoiceStream
Home</OPTION><OPTION VALUE="37">Personal Plus</OPTION><OPTION
VALUE="48">Professional</OPTION><OPTION VALUE="41">North America
300</OPTION><OPTION VALUE="42">North America 600</OPTION><OPTION
VALUE="43">North America 900</OPTION><OPTION VALUE="44">North America
1500</OPTION>
</SELECT></TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD ALIGN="CENTER"><FONT SIZE="5">3</FONT></TD>
<TD><SELECT NAME="PhoneID3" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION VALUE="104">Motorola 3682
$29.95</OPTION><OPTION VALUE="103">Nokia 5190 $69.95</OPTION><OPTION
VALUE="105">Nokia 6190 $129.95</OPTION><OPTION VALUE="47">Ericsson I888
$199.95</OPTION><OPTION VALUE="106">Motorola Timeport L7089
$299.95</OPTION><OPTION VALUE="0"> Sim Card $19.95</OPTION>
</SELECT></TD>
<TD><SELECT NAME="PlanID3" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION
VALUE="13">Personal</OPTION><OPTION VALUE="45">VoiceStream
Home</OPTION><OPTION VALUE="37">Personal Plus</OPTION><OPTION
VALUE="48">Professional</OPTION><OPTION VALUE="41">North America
300</OPTION><OPTION VALUE="42">North America 600</OPTION><OPTION
VALUE="43">North America 900</OPTION><OPTION VALUE="44">North America
1500</OPTION>
</SELECT></TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD ALIGN="CENTER"><FONT SIZE="5">4</FONT></TD>
<TD><SELECT NAME="PhoneID4" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION VALUE="104">Motorola 3682
$29.95</OPTION><OPTION VALUE="103">Nokia 5190 $69.95</OPTION><OPTION
VALUE="105">Nokia 6190 $129.95</OPTION><OPTION VALUE="47">Ericsson I888
$199.95</OPTION><OPTION VALUE="106">Motorola Timeport L7089
$299.95</OPTION><OPTION VALUE="0"> Sim Card $19.95</OPTION>
</SELECT></TD>
<TD><SELECT NAME="PlanID4" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION> <OPTION
VALUE="13">Personal</OPTION><OPTION VALUE="45">VoiceStream
Home</OPTION><OPTION VALUE="37">Personal Plus</OPTION><OPTION
VALUE="48">Professional</OPTION><OPTION VALUE="41">North America
300</OPTION><OPTION VALUE="42">North America 600</OPTION><OPTION
VALUE="43">North America 900</OPTION><OPTION VALUE="44">North America
1500</OPTION>
</SELECT></TD>
</TR>
</TABLE></TR></TD></TABLE>
<!-- <BR>
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="0"
WIDTH="405"><TR><TD VALIGN="TOP">
<TABLE CELLSPACING="1" CELLPADDING="3" BORDER="0"
BGCOLOR="Black">
<TR BGCOLOR="Silver" CLASS="columnheader">
<TD COLSPAN="2">Family Plus Plans</TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD COLSPAN="2">To order a Family Plus plan, choose
the plan and two pieces of equipment below.</TD>
</TR>
<TR BGCOLOR="White" CLASS="content">
<TD CLASS="columnheader">Plan</TD>
<TD><SELECT NAME="PlanID5" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION>
<OPTION VALUE="33">Family Plus
Pooled</OPTION>
</SELECT></TD>
</TR>
<TR BGCOLOR="White" CLASS="content" VALIGN="TOP">
<TD CLASS="columnheader">Equipment</TD>
<TD>
<SELECT NAME="PhoneID6" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION>
<OPTION VALUE="104">Motorola 3682
$29.95</OPTION><OPTION VALUE="103">Nokia 5190 $69.95</OPTION><OPTION
VALUE="105">Nokia 6190 $129.95</OPTION><OPTION VALUE="47">Ericsson I888
$199.95</OPTION><OPTION VALUE="106">Motorola Timeport L7089
$299.95</OPTION><OPTION VALUE="0"> Sim Card $19.95</OPTION>
</SELECT><BR>
<SELECT NAME="PhoneID7" SIZE="1"
onChange="showLayers(this)"><OPTION SELECTED
VALUE="">---------------</OPTION>
<OPTION VALUE="104">Motorola 3682
$29.95</OPTION><OPTION VALUE="103">Nokia 5190 $69.95</OPTION><OPTION
VALUE="105">Nokia 6190 $129.95</OPTION><OPTION VALUE="47">Ericsson I888
$199.95</OPTION><OPTION VALUE="106">Motorola Timeport L7089
$299.95</OPTION><OPTION VALUE="0"> Sim Card $19.95</OPTION>
</SELECT><BR>
</TD>
</TR>
</TABLE></TD></TR></TABLE> -->
<P>The customer's area code will be 203.</P>
<INPUT TYPE="HIDDEN" NAME="AreaCode" VALUE="203">
</FORM>
</TD><TD VALIGN="TOP" CLASS="content">
<DIV ID="Container" STYLE="position: relative; width: 300; height: 170">
<DIV ID="DescPlanID33" STYLE="visibility: hidden;
position: absolute">
<B>Family Plus Pooled</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$69.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>1000</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.25</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID33"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="42">America Toll
Free</OPTION><OPTION VALUE="41">Unconditional Call
Forwarding</OPTION><OPTION VALUE="43">Weekends Free</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID33" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="31">Family Plus
2000</OPTION><OPTION VALUE="23">Buy One Get One Free</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID13" STYLE="visibility: hidden;
position: absolute">
<B>Personal</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$19.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>75</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.30</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID13"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="42">America Toll
Free</OPTION><OPTION VALUE="45">Call Control</OPTION><OPTION VALUE="44">Call
Forwarding</OPTION><OPTION VALUE="12">Enhanced VoiceMail</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID13" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="35">Get More Intro
Text</OPTION><OPTION VALUE="29">NY, NJ, CT Toll Free</OPTION><OPTION
VALUE="3">1000 Weekend Minutes</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID45" STYLE="visibility: hidden;
position: absolute">
<B>VoiceStream Home</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$29.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>250</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.45</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID45"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="40">America Toll
Free</OPTION><OPTION VALUE="16">Call Control</OPTION><OPTION VALUE="15">Call
Forwarding</OPTION><OPTION VALUE="12">Enhanced VoiceMail</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID45" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="35">Get More Intro
Text</OPTION><OPTION VALUE="29">NY, NJ, CT Toll Free</OPTION><OPTION
VALUE="3">1000 Weekend Minutes</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID37" STYLE="visibility: hidden;
position: absolute">
<B>Personal Plus</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$39.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>500</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.25</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID37"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="40">America Toll
Free</OPTION><OPTION VALUE="16">Call Control</OPTION><OPTION VALUE="15">Call
Forwarding</OPTION><OPTION VALUE="12">Enhanced VoiceMail</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID37" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="35">Get More Intro
Text</OPTION><OPTION VALUE="29">NY, NJ, CT Toll Free</OPTION><OPTION
VALUE="3">1000 Weekend Minutes</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID48" STYLE="visibility: hidden;
position: absolute">
<B>Professional</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$59.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>900</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.20</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID48"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="40">America Toll
Free</OPTION><OPTION VALUE="16">Call Control</OPTION><OPTION VALUE="15">Call
Forwarding</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID48" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="35">Get More Intro
Text</OPTION><OPTION VALUE="29">NY, NJ, CT Toll Free</OPTION><OPTION
VALUE="3">1000 Weekend Minutes</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID41" STYLE="visibility: hidden;
position: absolute">
<B>North America 300</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$39.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>300</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.30</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID41"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="50">VoiceStream
Minutes</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID41" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="27">North American
Neighborhood Special Bonus</OPTION><OPTION VALUE="26">North American
Neighborhood Info</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID42" STYLE="visibility: hidden;
position: absolute">
<B>North America 600</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$59.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>600</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.25</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID42"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="50">VoiceStream
Minutes</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID42" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="27">North American
Neighborhood Special Bonus</OPTION><OPTION VALUE="26">North American
Neighborhood Info</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID43" STYLE="visibility: hidden;
position: absolute">
<B>North America 900</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$89.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>900</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.25</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID43"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="50">VoiceStream
Minutes</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID43" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="27">North American
Neighborhood Special Bonus</OPTION><OPTION VALUE="26">North American
Neighborhood Info</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPlanID44" STYLE="visibility: hidden;
position: absolute">
<B>North America 1500</B><BR><BR>
<TABLE BORDER="0" CELLSPACING="1" CELLPADDING="1">
<TR CLASS="content">
<TD>Monthly Cost</TD>
<TD> </TD>
<TD>$139.99</TD>
</TR>
<TR CLASS="content">
<TD>Minutes Included</TD>
<TD> </TD>
<TD>1500</TD>
</TR>
<TR CLASS="content">
<TD>Extra Minutes</TD>
<TD> </TD>
<TD>$0.25</TD>
</TR>
</TABLE>
<BR>
<FORM ACTION=""><SELECT NAME="PlanFeatureID44"
SIZE="1" onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Features</OPTION>
<OPTION VALUE="">Choose a
Feature for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="50">VoiceStream
Minutes</OPTION>
</SELECT>
<BR><BR>
<SELECT NAME="PlanTextID44" SIZE="1"
onChange="showLayers(this)">
<OPTION SELECTED
VALUE="">Click to See Promotions</OPTION>
<OPTION VALUE="">Choose a
Promotion for Details</OPTION>
<OPTION
VALUE="">-------------------------------------</OPTION>
<OPTION VALUE="27">North American
Neighborhood Special Bonus</OPTION><OPTION VALUE="26">North American
Neighborhood Info</OPTION>
</SELECT>
</FORM>
</DIV>
<DIV ID="DescPhoneID104" STYLE="visibility: hidden;
position:absolute">
<B>Motorola 3682</B><BR><BR>
Price: $29.95<BR>
<P>The Motorola 3682 is a Lightweight, Stylish and
Wearable Advanced Communication Tool</P>
<UL>
<LI>Quick Access Operation </LI>
<LI>Conference/Multi-party Calling </LI>
<LI>Alkaline Battery capable </LI>
<LI>Supports Short Message Service </LI>
<LI>Small Smart Card </LI>
<LI>Turbo Dial Operation </LI>
<LI>Supports Phase II Signaling </LI>
<LI>Enhanced Full Rate Vocoder </LI>
<LI>Multi-Lingual Capable </LI>
<LI>Supports Call Forwarding and Call Transfer </LI>
<LI>Simple To Use </LI>
<LI>Personality Interface </LI>
<LI>Packaged with 700mAh NiMH battery. </LI>
<LI>Quick Access Keys with display. </LI>
<LI>Active Flip </LI>
<LI>AA Alkaline battery capability. </LI></UL>
<B><P>Weight:</B> 6.2 oz</P>
<B><P>Size:</B> 5.3" x 2" x 1.2"</P>
<B><P>Battery:</B> 114 hours standby; 308 min. talk time</P>
</DIV>
<DIV ID="DescPhoneID103" STYLE="visibility: hidden;
position:absolute">
<B>Nokia 5190</B><BR><BR>
Price: $69.95<BR>
<FONT FACE="Arial" SIZE=2><P>The Nokia 5190 is a
small, lightweight phone with great talk and standby time that's packed with
useful, simple-to-learn features. The Navi<SUP>TM</SUP> Key provides quick,
one-button access to features on a large, easy-to-read five-line screen.
Xpress-on<SUP>TM</SUP> vibrant-colored covers - such as Gecko Green and
Bermuda Blue - are simple for you to change, combined with a large selection
of ring tunes that allow you to personalize your phone. Digital technology
provides enhanced sound quality and call privacy. And, you can increase your
productivity by using the Nokia 5190 for e-mail, faxes and short messages.
</P>
<B><P>Long Lasting, Lightweight and Small </P>
<UL>
</B><LI>3 to 5 hours of talk time with standard battery </LI>
<LI>2.5 to 9 days of standby time with standard battery </LI>
<LI>Weighs less than 6 ounces with standard battery </LI>
<LI>Only 5.2 inches tall </LI>
<LI>Smooth ergonomic design, fits perfectly in your hand. </LI></UL>
<B><P>Easy To Use </P>
<UL>
</B><LI>One-button Navi<SUP>TM</SUP> Key guides you </LI>
<LI>On-screen help </LI>
<LI>Large backlit screen </LI></UL>
<B><P>Fully Featured </P>
<UL>
</B><LI>Phone book will store up to 110 names and numbers </LI>
<LI>3 entertaining games </LI>
<LI>Clock with alarm </LI>
<LI>Send and receive text messages </LI>
<LI>Versatile range of accessories for home, office and auto </LI></UL>
<B><P>Personalized </P>
<UL>
</B><LI>35 distinctive ring tunes </LI>
<LI>Xpress-on<SUP>TM</SUP> color covers </LI></UL>
<B><P>Weight:</B> 6.0 ounces <BR>
<B>Dimensions:</B> 5.2"L x 1.9"W x 1.2"D <BR>
Volume - 143 cc </P>
<P>The 5190 comes with an Extended 900 mAh NiMH battery.</P>
</DIV>
<DIV ID="DescPhoneID105" STYLE="visibility: hidden;
position:absolute">
<B>Nokia 6190</B><BR><BR>
Price: $129.95<BR>
<FONT SIZE=2><P>The Nokia 6190 is an outstanding,
high-end, digital phone that couples exciting features and superior
performance in an outstanding design. With the optional Nokia PLUS module,
the 6190 extends your calling area by providing access to the nationwide
network of analog cellular systems. </P>
<B>
</B></FONT><FONT FACE="Arial" SIZE=2 COLOR="#0000ff"><P>Fully
Featured</FONT><FONT SIZE=2> </P>
<UL>
<LI></FONT><FONT FACE="Arial" SIZE=2>Phone book will store up to 250 names
and numbers</FONT><FONT FACE="Arial" SIZE=2> </LI>
<LI>4 entertaining games </LI>
<LI>Calculator, clock and calendar </LI>
<LI>Currency converter </LI>
<LI>Send and receive text messages just like a pager </LI>
<LI>Versatile range of accessories for home, office and auto </LI></UL>
</FONT><FONT FACE="Arial" SIZE=2 COLOR="#0000ff"><P>Personalized</FONT><FONT
SIZE=2> </P>
<UL>
</FONT><FONT FACE="Arial" SIZE=2><LI>35 Distinctive ring tones </LI>
<LI>Customizable profile settings to match your environment </LI>
</FONT><FONT SIZE=2><LI></FONT><FONT FACE="Arial" SIZE=2>3 Unique
"chameleon" colors</FONT><FONT FACE="Arial" SIZE=2> </LI></UL>
</FONT><B><FONT SIZE=2>
<P>Weight:</B> 4.74 ounces <BR>
</P>
<B><P>Dimensions:</B> 5.0"L x 1.9"W x .875"D <BR>
Volume - 130 cc </P>
<P>The 6190 comes with an Extended 900 mAh Li-Ion battery. </P></FONT>
<TABLE CELLSPACING=0 BORDER=0 CELLPADDING=2 WIDTH=350>
<TR><TD VALIGN="MIDDLE" COLSPAN=3>
<FONT SIZE=2><P><B>Extended 900 mAh Li-Ion</B> </FONT></TD>
</TR>
<TR><TD WIDTH="14%" VALIGN="MIDDLE"> </TD>
<TD WIDTH="43%" VALIGN="MIDDLE">
<B><FONT SIZE=2><P>Talk Time</B> </FONT></TD>
<TD WIDTH="43%" VALIGN="MIDDLE">
<B><FONT SIZE=2><P>Standby Time</B> </FONT></TD>
</TR>
<TR><TD VALIGN="MIDDLE">
<B><FONT SIZE=2><P>Digital</B> </FONT></TD>
<TD VALIGN="MIDDLE">
<FONT SIZE=2><P>up to 3-5 hours </FONT></TD>
<TD VALIGN="MIDDLE">
<FONT SIZE=2><P>up to 60-270 hours </FONT></TD>
</TR>
<TR><TD VALIGN="MIDDLE">
<B><FONT SIZE=2><P>Analog</B> </FONT></TD>
<TD VALIGN="MIDDLE">
<FONT SIZE=2><P>up to 2 hours </FONT></TD>
<TD VALIGN="MIDDLE">
<FONT SIZE=2><P>up to 18-24 hours </FONT></TD>
</TR>
</TABLE>
</DIV>
<DIV ID="DescPhoneID47" STYLE="visibility: hidden;
position:absolute">
<B>Ericsson I888</B><BR><BR>
Price: $199.95<BR>
<B><FONT FACE="Arial" SIZE=2 COLOR="#000080"><P>I
888 for GSM 1900 / GSM 900 <BR>
</B>One phone, two networks and five continents</P>
</FONT><FONT FACE="Arial" SIZE=2><P>The Ericsson I 888 World is a dual band
mobile phone that lets you avail of the complete range of GSM services in
Europe, Asia/Pacific, Africa and the Americas. It affords intelligent
network search between the bands and incorporates state-of-the-art
technology with a cutting-edge design. Finished in an elegant blue color it
comes with a Global Travel Charger that powers your phone anywhere in the
world. </FONT><FONT SIZE=2><BR>
</FONT><FONT FACE="Arial" SIZE=1><BR>
<BR>
<BR>
Size 130x 49x 22 mm / 5.1x 1.9x 0.8 Ins </P>
</FONT><FONT SIZE=2><P><BR>
</FONT><B><FONT FACE="Arial" SIZE=2 COLOR="#000080">Features of the I 888
for GSM 1900 / GSM 900 </B></FONT><FONT SIZE=2><BR>
</FONT><FONT FACE="Arial" SIZE=2 COLOR="#000080"> </P>
<UL>
</FONT><FONT FACE="Arial" SIZE=2><LI>Active Flip </LI>
<LI>Infrared communication </LI>
<LI>Built-in PC card </LI>
<LI>Large display </LI>
<LI>15 last dialed numbers </LI>
<LI>Speed dial </LI>
<LI>Phone book for 99 names and numbers </LI>
<LI>Melody editing </LI>
<LI>Choice of 24 languages </LI>
<LI>Mute microphone and ring signal </LI>
<LI>Clock with date and alarm functionality*</LI></UL>
</DIV>
<DIV ID="DescPhoneID106" STYLE="visibility: hidden;
position:absolute">
<B>Motorola Timeport L7089</B><BR><BR>
Price: $299.95<BR>
<DIR>
<FONT SIZE=2><P>The Motorola Timeport L7089 is a full-featured phone that
helps keep you in touch no matter where you are. Take this phone with you
when you travel and you can always be in touch. This phone has it all!</P>
</DIR>
<B><P>Highlighted Features:</B> </P>
<UL>
<LI>3.8 ounces with optional slim battery </LI>
<LI>Tri-band Technology - GSM 900/1800/1900 MHz (09) </LI>
<LI>Voice Activation Capable - speak a stored name, number or function and
your phone calls it up for you - up to 25 names. </LI>
<LI>VoiceNote™ Voice Recorder - record conversations, memos or other
notes (08) </LI>
<LI>IrDA® Connectivity - no need for connector cables; with Infrared
communication you can up and down load between your phone and your PC.
(09)/(10) </LI>
<LI>VibraCall® alert - to discreetly notify you of incoming calls. </LI>
<LI>Headset Jack Capable (04) </LI>
<LI>Sim Application Tool Kit - get sports news and traffic bulletins with
interactive information services offered by GSM network providers.(01) </LI>
<LI>Multi-Language Support - English, Spanish, French, Portuguese, German,
Italian </LI>
<LI>Smart Button - to simplify operation. </LI>
<LI>Caller ID (01) - with phonebook lookup. </LI>
<LI>International Access </LI>
<LI>LED Status Indicator </LI>
<LI>Menu Operation - Short, Extended, Personal </LI>
<LI>Built-in Phone Book </LI>
<LI>TrueSync® software - create, edit and synchronize phonebook entries
with your PC, web-based PIM and other handheld devices. </LI></UL>
<B><P>Talk Time Features:</B> </P>
<UL>
<LI>Provides up to 210 minutes of continuous talk time <BR>
in digital mode, using standard battery (03) </LI>
<LI>Provides up to 150 hours of standby time <BR>
in digital mode, using standard battery (03) </LI></UL>
<B><P>Display:</B> </P>
<UL>
<LI>Optimax™ Full Graphics Display - with adjustable contrast
</LI></UL>
<B><P>Memory:</B> </P>
<UL>
<LI>Display Own Phone Number </LI>
<LI>Last Number Dialed - up to 10 Numbers </LI></UL>
<B><P>Security Features:</B> </P>
<UL>
<LI>Auto Lock </LI>
<LI>Call Restrictions </LI>
<LI>Electronic Lock </LI>
<LI>Master Clear & Lock </LI></UL>
</DIV>
<DIV ID="DescPhoneID0" STYLE="visibility: hidden;
position:absolute">
<B> Sim Card</B><BR><BR>
Price: $19.95<BR>
If the customer already has a phone, and just wants
to order the service, they will need a VoiceStream SIM card.
</DIV>
</DIV>
<BR>
<DIV ID="PlanFeatures" STYLE="position: relative;">
<DIV ID="Desc2PlanFeatureID40" STYLE="visibility:
hidden; position: absolute">
<B>America Toll Free</B><BR><BR>
<P><B>Description:</B><BR>
Use up to 300 anytime minutes per month to
call anywhere in the continental U.S. and pay no long distance charges.
</P>
<P><B>Notes:</B><BR>
In home market only. Additional minutes
charged at standard long distance rates. Airtime rates apply.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID42" STYLE="visibility:
hidden; position: absolute">
<B>America Toll Free</B><BR><BR>
<P><B>Description:</B><BR>
Use up to 300 anytime minutes per month to
call anywhere in the continental U.S. and pay no long distance charges.
</P>
<P><B>Notes:</B><BR>
In home market only. Additional minutes
charged at standard long distance rates. Airtime rates apply.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID16" STYLE="visibility:
hidden; position: absolute">
<B>Call Control</B><BR><BR>
<P><B>Description:</B><BR>
Call Control lets you be in charge of your
calling costs. For a low monthly fee, you can activate any of the following
features:
Local Calls Only - Restricts all outgoing long-distance calls
No Incoming Calls - Allows outgoing calls only
No Outgoing Calls - Allows incoming calls only</P>
<P><B>Notes:</B><BR>
You cannot activate both No Incoming Calls
and No Outgoing Calls at the same time.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID45" STYLE="visibility:
hidden; position: absolute">
<B>Call Control</B><BR><BR>
<P><B>Description:</B><BR>
Call Control lets you be in charge of your
calling costs. For a low monthly fee, you can activate any of the following
features:
Local Calls Only - Restricts all outgoing long-distance calls
No Incoming Calls - Allows outgoing calls only
No Outgoing Calls - Allows incoming calls only</P>
<P><B>Notes:</B><BR>
You cannot activate both No Incoming Calls
and No Outgoing Calls at the same time.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID44" STYLE="visibility:
hidden; position: absolute">
<B>Call Forwarding</B><BR><BR>
<P><B>Description:</B><BR>
Forwards your calls to any other phone you
choose. This allows you to be reached when you're away from your VoiceStream
phone - or if you can't receive calls, but still want to receive
messages.</P>
<P><B>Notes:</B><BR>
Includes 500 minutes of Call Forwarding per
month. Additional minutes charged at 15� per minute. America Toll Free does
not apply when using Call Forwarding. Calls forwarded to numbers outside the
local calling area are charged long-distance rates.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID15" STYLE="visibility:
hidden; position: absolute">
<B>Call Forwarding</B><BR><BR>
<P><B>Description:</B><BR>
Forwards your calls to any other phone you
choose. This allows you to be reached when you're away from your VoiceStream
phone - or if you can't receive calls, but still want to receive
messages.</P>
<P><B>Notes:</B><BR>
Includes 500 minutes of Call Forwarding per
month. Additional minutes charged at 15� per minute. America Toll Free does
not apply when using Call Forwarding. Calls forwarded to numbers outside the
local calling area are charged long-distance rates.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID12" STYLE="visibility:
hidden; position: absolute">
<B>Enhanced VoiceMail</B><BR><BR>
<P><B>Description:</B><BR>
Enhanced VoiceMail with Message Alert gives
you all the capabilities of our VoiceMail service, but with more message
capacity, plus a personal greeting, broadcast messaging and FaxMail. You
even have the ability for your callers to dictate text messages to a live
operator.</P>
<P><B>Notes:</B><BR>
You pay a reduced airtime fee to retrieve
your Enhanced VoiceMail from your VoiceStream phone. Long-distance charges
apply. You will be charged 50� for each operator-assisted message.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID41" STYLE="visibility:
hidden; position: absolute">
<B>Unconditional Call Forwarding</B><BR><BR>
<P><B>Description:</B><BR>
Forwards your calls to any other phone you
choose. This allows you to be reached when you're away from your VoiceStream
phone - or if you can't receive calls, but still want to receive
messages.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID50" STYLE="visibility:
hidden; position: absolute">
<B>VoiceStream Minutes</B><BR><BR>
<P><B>Description:</B><BR>
Add an extra 600 local minutes to talk to
other VoiceStream customers from your home VoiceStream area.</P>
</DIV>
<DIV ID="Desc2PlanFeatureID43" STYLE="visibility:
hidden; position: absolute">
<B>Weekends Free</B><BR><BR>
<P><B>Description:</B><BR>
Sign up for a Family Plus plan and receive
unlimited weekend minutes for $9.99 as long as you remain on service,
<I>annual contract required.</I></P>
</DIV>
</DIV>
<BR>
<DIV ID="PlanTexts" STYLE="position: relative;">
<DIV ID="Desc2PlanTextID35" STYLE="visibility:
hidden; position: absolute">
<P><B>Get More Intro Text</B></P>
Here you will find the rate plans that we are
offering for the <B>Danbury</B> region. "More Information" will give you
details about included and optional features for each plan. "Coverage Map"
will show the areas where your airtime will be effective. Click "Add to
cart" to choose the plan you want. You can always change your mind later.
<P>
</DIV>
<DIV ID="Desc2PlanTextID31" STYLE="visibility:
hidden; position: absolute">
<P><B>Family Plus 2000</B></P>
With the Family Plus plan 2 phones can share up to
2000 minutes per month. The phones share 1000 anytime minutes that are
pooled between the phones. Additionally each phone receives another 500
weekend minutes. That's 2000 minutes all for just $69.99. Annual agreement
required. <P>
</DIV>
<DIV ID="Desc2PlanTextID29" STYLE="visibility:
hidden; position: absolute">
<P><B>NY, NJ, CT Toll Free</B></P>
<P> <B>New York, New Jersey, Connecticut Toll
Free</B> included with every plan. With New York, New Jersey and Connecticut
Toll Free, you pay one flat rate to call from your home digital coverage
area to anywhere in New York, New Jersey and Connecticut.<BR>So calling your
sister in Atlantic City or your best friend in Buffalo costs no more than
calling home from the office.</P> <P>
</DIV>
<DIV ID="Desc2PlanTextID27" STYLE="visibility:
hidden; position: absolute">
<P><B>North American Neighborhood Special
Bonus</B></P>
<P><FONT COLOR="Red"><B>Special Bonus:</B> For a
Limited time sign up on any North American Neighborhood plan and get 200
additional weekend minutes for 12 months! Annual Contract required. These
weekend minutes can also be used to call anyone from anywhere in a GSM
market in North America!</FONT></P> <P>
</DIV>
<DIV ID="Desc2PlanTextID26" STYLE="visibility:
hidden; position: absolute">
<P><B>North American Neighborhood Info</B></P>
<P>Calling Made Easier</P> <P>North American
Neighborhood Rate Plans eliminate long distance and roaming charges to make
calling throughout the US, Canada and Hawaii affordable for you. Just pick
from one of four plans to enjoy calling in over 4000 cities, for 10 cents a
minute or less. The beauty of this plan is that your minutes give you the
same low rate whether you're calling within your home calling area, roaming
in another city or calling long distance. Just think, with a North American
Neighborhood Rate Plan, you could be saying, "Hello, neighbor" to people two
or more time zones away.</P> <P>
</DIV>
<DIV ID="Desc2PlanTextID23" STYLE="visibility:
hidden; position: absolute">
<P><B>Buy One Get One Free</B></P>
<FONT COLOR="Red"><B>Buy One Get One Free!</B> We're
giving away a Motorola 3682 cellular phone with every Family Plus Plan
purchase. When choosing your phones, simply choose a Motorola 3682 and any
other phone and you'll receive the Motorola 3682 phone for free.</FONT> <P>
</DIV>
<DIV ID="Desc2PlanTextID3" STYLE="visibility:
hidden; position: absolute">
<P><B>1000 Weekend Minutes</B></P>
<FONT COLOR="Red"><P><B>Special Bonus:</B> For a
limited time receive up to 1000 weekend minutes each month that can be used
to call anyone in New York, New Jersey or Connecticut. You receive 12 months
of free weekend calls on the $39.99 and $59.99 rate plans and 250 weekend
minutes each month for 6 months on the $19.99 or $29.99 rate plan. Requires
annual agreement.</P></FONT> <P>
</DIV>
</DIV>
</TD></TR></TABLE>
</body>
</html>
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebarRsts&bodyRsts/cf_talk or send a message
to [EMAIL PROTECTED] with 'unsubscribe' in the body.