// ****************************************************************************
// Right Content Area Drop Down Scripts [BEGIN]
// ****************************************************************************

fhDropDowns = new Array();
fhHover = function() {
    for (var x=0; x<fhDropDowns.length; x++) {
        var sfEls = document.getElementById(fhDropDowns[x]).getElementsByTagName("LI");
        for (var i=0; i<sfEls.length; i++) {
            sfEls[i].onmouseover=function() {
                this.className+=" fhhover";
            }
            sfEls[i].onmouseout=function() {
                this.className=this.className.replace(new RegExp(" fhhover\\b"), "");
            }
        }
    }
}
fhAddDropDown = function(divID) { fhDropDowns[fhDropDowns.length]=divID; }
if (window.attachEvent) window.attachEvent("onload", fhHover);

// Right Content Area Drop Down Scripts [END]
// ****************************************************************************



// ****************************************************************************
// Main Menu Drop Down Scripts [BEGIN]
// ****************************************************************************

var cssdropdown = {
disappeardelay: 250,    //set delay in miliseconds before menu disappears onmouseout
disablemenuclick: true, //when user clicks on a menu item with a drop down menu, disable menu item's link?
enableswipe: 1,         //enable swipe effect? 1 for yes, 0 for no


// FH:GRC - Added function for menu roll-over - requires [image names "*_over.*"] && [image id's "*_img"]
menuImgSwap:function(imgID,on){
obj=document.getElementById(imgID+'_img');
if (obj) {
slsh=obj.src.lastIndexOf("/");
dot=obj.src.lastIndexOf(".");
srcdir=obj.src.substr(0,slsh+1);
imgname=obj.src.substr(slsh+1,(dot-(slsh+1)));
imgext=obj.src.substr(dot);
if(imgname.lastIndexOf('_over')==-1&&on){ obj.src = srcdir+imgname+'_over'+imgext; }
else if(imgname.lastIndexOf('_over')>0&&!on) { 

if (imgID == 'drop1' | imgID == 'drop2' | imgID == 'drop3'){
obj.src = srcdir+(imgname.substr(0,imgname.length-5))+imgext; Currentstate(CimgID); }
else {obj.src = srcdir+(imgname.substr(0,imgname.length-5))+imgext;}

}
}
},



//No need to edit beyond here////////////////////////
dropmenuobj: null, ie: document.all, firefox: document.getElementById&&!document.all, swipetimer: undefined, bottomclip:0,getposOffset:function(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
},

swipeeffect:function(){
if (this.bottomclip<parseInt(this.dropmenuobj.offsetHeight)){
this.bottomclip+=10+(this.bottomclip/10) //unclip drop down menu visibility gradually
this.dropmenuobj.style.clip="rect(0 auto "+this.bottomclip+"px 0)"
}
else
return
this.swipetimer=setTimeout("cssdropdown.swipeeffect()", 10)
},

showhide:function(obj, e){
if (this.ie || this.firefox)
this.dropmenuobj.style.left=this.dropmenuobj.style.top="-500px"
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover"){
if (this.enableswipe==1){
if (typeof this.swipetimer!="undefined")
clearTimeout(this.swipetimer)
obj.clip="rect(0 auto 0 0)" //hide menu via clipping
this.bottomclip=0
this.swipeeffect()
}
obj.visibility="visible"
}
else if (e.type=="click")
obj.visibility="hidden"
},

iecompattest:function(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : 

document.body
},

clearbrowseredge:function(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=this.ie && !window.opera? this.iecompattest().scrollLeft+this.iecompattest().clientWidth-15 

: window.pageXOffset+window.innerWidth-15
this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetWidth
if (windowedge-this.dropmenuobj.x < this.dropmenuobj.contentmeasure)  //move menu to the left?
edgeoffset=this.dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var topedge=this.ie && !window.opera? this.iecompattest().scrollTop : window.pageYOffset
var windowedge=this.ie && !window.opera? this.iecompattest().scrollTop+this.iecompattest().clientHeight-15 

: window.pageYOffset+window.innerHeight-18
this.dropmenuobj.contentmeasure=this.dropmenuobj.offsetHeight
if (windowedge-this.dropmenuobj.y < this.dropmenuobj.contentmeasure){ //move up?
edgeoffset=this.dropmenuobj.contentmeasure+obj.offsetHeight
if ((this.dropmenuobj.y-topedge)<this.dropmenuobj.contentmeasure) //up no good either?
edgeoffset=this.dropmenuobj.y+obj.offsetHeight-topedge
}
}
return edgeoffset
},

dropit:function(obj, e, dropmenuID){

if (this.dropmenuobj!=null) {//hide previous menu
 
this.menuImgSwap(this.dropmenuobj.id,false);
this.dropmenuobj.style.visibility="hidden"; //hide menu

}
this.clearhidemenu();

this.menuImgSwap(dropmenuID,true);

if (this.ie||this.firefox){
obj.onmouseout=function(){cssdropdown.delayhidemenu();}
obj.onclick=function(){return !cssdropdown.disablemenuclick} //disable main menu item link onclick?
this.dropmenuobj=document.getElementById(dropmenuID)
this.dropmenuobj.onmouseover=function(){cssdropdown.clearhidemenu();}

//alert (dropmenuID);
if (dropmenuID == 'drop1' | dropmenuID == 'drop2' | dropmenuID == 'drop3'){
    this.dropmenuobj.onmouseout=function(){cssdropdown.dynamichide1(e);}
    this.dropmenuobj.onclick=function(){cssdropdown.delayhidemenu1()}
}
else {
    this.dropmenuobj.onmouseout=function(){cssdropdown.dynamichide(e);}
    this.dropmenuobj.onclick=function(){cssdropdown.delayhidemenu()}
}



this.showhide(this.dropmenuobj.style, e)
this.dropmenuobj.x=this.getposOffset(obj, "left")
this.dropmenuobj.y=this.getposOffset(obj, "top")
this.dropmenuobj.style.left=this.dropmenuobj.x-this.clearbrowseredge(obj, "rightedge")+"px"
this.dropmenuobj.style.top=this.dropmenuobj.y-this.clearbrowseredge(obj, 

"bottomedge")+obj.offsetHeight+1+"px"
}
DivSetVisible(true, dropmenuID); ////fix for ie dropdown over select
},

contains_firefox:function(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
},

dynamichide:function(e){
var evtobj=window.event? window.event : e
if (this.ie&&!this.dropmenuobj.contains(evtobj.toElement))
this.delayhidemenu()
else if (this.firefox&&e.currentTarget!= evtobj.relatedTarget&& 

!this.contains_firefox(evtobj.currentTarget, evtobj.relatedTarget))
this.delayhidemenu()
},

delayhidemenu:function(){
this.delayhide=setTimeout("cssdropdown.dropmenuobj.style.visibility='hidden';cssdropdown.menuImgSwap(cssdropdown.dropmenuobj.id,false);",this.disappeardelay) //hide menu
},

/////////edit for stockdat drop down
dynamichide1:function(e){
var evtobj=window.event? window.event : e
if (this.ie&&!this.dropmenuobj.contains(evtobj.toElement))
this.delayhidemenu1()
else if (this.firefox&&e.currentTarget!= evtobj.relatedTarget&& 

!this.contains_firefox(evtobj.currentTarget, evtobj.relatedTarget))
this.delayhidemenu1()
},

delayhidemenu1:function(){
this.delayhide=setTimeout("cssdropdown.dropmenuobj.style.visibility='hidden';cssdropdown.menuImgSwap(cssdropdown.dropmenuobj.id,false); document.getElementById('DivShim1').style.display = 'none';",this.disappeardelay) //hide menu
},

///////////////////////edit done


clearhidemenu:function(){
if (this.delayhide!="undefined")
clearTimeout(this.delayhide)
},

startmainmenu:function(){
for (var ids=0; ids<arguments.length; ids++){
var menuitems=document.getElementById(arguments[ids]).getElementsByTagName("a")
for (var i=0; i<menuitems.length; i++){
if (menuitems[i].getAttribute("rel")){
var relvalue=menuitems[i].getAttribute("rel")
menuitems[i].onmouseover=function(e){

var event=typeof e!="undefined"? e : window.event
cssdropdown.dropit(this,event,this.getAttribute("rel"))
}
}
}
}
}
}
 
 function DivSetVisible(state, relvalue)
  {
   //var DivID = this.getAttribute("rel");
   
   if (relvalue == 'drop1' | relvalue == 'drop2' | relvalue == 'drop3'){
   
   //document.write (relvalue);
   var DivRef = document.getElementById(relvalue);
   var IfrRef = document.getElementById('DivShim1');
   if(state)
   { 
       //alert(DivRef.style.left);
       IfrRef.style.width = DivRef.offsetWidth;
    IfrRef.style.height = DivRef.offsetHeight;
    IfrRef.style.top = DivRef.style.top;
    IfrRef.style.left = DivRef.style.left;
    IfrRef.style.zIndex = DivRef.style.zIndex - 1;
    IfrRef.style.display = "block";
    DivRef.style.visibility ="visible";   
    DivRef.style.display = "block";

   }
   
   else
   {   
       IfrRef.style.display = "none";
    DivRef.style.display = "none";
 
   }
  }
  }

/*function page(num)
{
    switch(num) {
    case 1:
        location.href = "http://www.att.com/gen/landing-pages?pid=5718";
        break;
    case 2:
        location.href = "http://www.att.com/gen/landing-pages?pid=6080";
        break;
    case 3:
        location.href = "http://www.att.com/gen/landing-pages?pid=3309";
        break;
    case 4:
        location.href = "http://www.att.com/gen/landing-pages?pid=3309";
        break;
    case 6:
        location.href = "#";
        break;
    }*/
	function page(num)
{
    switch(num) {
    case 1:
        location.href = "/gen/landing-pages?pid=5718";
        break;
    case 2:
        location.href = "/gen/landing-pages?pid=6080";
        break;
    case 3:
        location.href = "/gen/landing-pages?pid=3309";
        break;
    case 4:
        location.href = "/gen/landing-pages?pid=3309";
        break;
    case 6:
        location.href = "#";
        break;
    }
	
}


function fhrenderTopMenu() {

    document.write('<!-- BEGIN MAIN TOP MENU -->\n');
    document.write('<div class="dropdownstyle" id="dropdownmenu">\n');
    document.write('<a HREF="/gen/landing-pages?pid=5718" title="Investor Relations" rel="dropmenu1"><img src="/Common/merger/images/navbar_01.gif" onclick="page(1)" width="148" height="27" border="0" id="dropmenu1_img" alt="Investor Relations"></a><a HREF="/gen/landing-pages?pid=6080" rel="dropmenu2" title="Media Newsroom"><img src="/Common/merger/images/navbar_02.gif" onclick="page(2)" id="dropmenu2_img" width="130" height="27" border="0" alt="Media Newsroom"></a><a HREF="/gen/landing-pages?pid=3309" rel="dropmenu3" title="Industry Analyst Center"><img src="/Common/merger/images/navbar_03.gif" onclick="page(3)" id="dropmenu3_img" width="174" height="27" border="0" alt="Industry Analyst Center"></a><a HREF="/gen/landing-pages?pid=3309" rel="dropmenu4" title=""><img src="/Common/merger/images/navbar_04.gif" onclick="page(4)" id="dropmenu4_img" width="163" height="27" border="0" alt="Company Information"></a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--1st drop down menu -->\n');
    document.write('<div id="dropmenu1" class="dropmenudiv" style="width: 148px;">\n');
    document.write('<a href="/gen/investor-relations?pid=290" title="Quarterly Earnings">Quarterly Earnings</a>\n');
    document.write('<a href="/gen/investor-relations?pid=9186" title="Annual Report">Annual Report</a>\n');
    document.write('<a href="/gen/investor-relations?pid=5647" title="Events and Presentations">Events and Presentations</a>\n');
    document.write('<a href="/gen/investor-relations?pid=5609" title="Corporate Governance">Corporate Governance</a>\n');
    document.write('<a href="/gen/investor-relations?pid=9532" title="Investor News">Investor News</a>\n');
    document.write('<a href="/gen/investor-relations?pid=9533" title="Stockholder Services">Stockholder Services</a>\n');
    document.write('<a href="/gen/investor-relations?pid=5644" title="Investor Contacts">Investor Contacts</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--2nd drop down menu -->\n');
    document.write('<div id="dropmenu2" class="dropmenudiv" style="width: 130px;">\n');
    document.write('<a href="/gen/landing-pages?pid=6080" title="Newsroom">Newsroom</a>\n');

    var strHREF = "/gen/press-room?pid=4800&cdvn=news&newsfunction=searchresults";
    var now = new Date();
    var month = now.getMonth();
    var month_start = month - 2;
    var year = now.getFullYear();
    var year_start = year;
    if (month_start <= 0)
    {
        month_start = month + 10;
        year_start = year - 1;
    }
    strHREF += "&beginning_month=" + month_start;
    strHREF += "&beginning_year=" + year_start;
    strHREF += "&ending_month=" + month;
    strHREF += "&ending_year=" + year;

    document.write('<a href="' + strHREF + '" title="Recent Releases">Recent Releases</a>\n');
//  document.write('<a href="/gen/press-room?pid=5097&cdvn=news&newsfunction=searchresults&beginning_month=5&beginning_year=2006&ending_month=7&ending_year=2006" title="Releases">Releases</a>\n');

    document.write('<a href="/gen/press-room?pid=9880" title="News Release Archives">News Release Archives</a>\n');
    document.write('<a href="/gen/press-room?pid=5834" title="Media Kits">Media Kits</a>\n');
    document.write('<a href="/gen/press-room?pid=6209" title="Multimedia Gallery">Multimedia Gallery</a>\n');
    document.write('<a href="/gen/press-room?pid=9201" title="Calendar of Events">Calendar of Events\n');
    document.write('<a href="/gen/investor-relations?pid=9534" title="Products and Services">Products and Services</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--3rd drop down menu -->\n');
    document.write('<div id="dropmenu3" class="dropmenudiv" style="width: 174px;">\n');
    document.write('<a href="/gen/press-room?pid=4800&cdvn=news&newsfunction=searchresults&beginning_month=1&beginning_year=2008&ending_month=3&ending_year=2008" title="Analyst News">Analyst News</a>\n');
    document.write('<a href="/gen/press-room?pid=9201" title="Calendar of Events">Calendar of Events</a>\n');
    document.write('<a href="/gen/press-room?pid=5036" title="Industry Analyst Contacts">Industry Analyst Contacts</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--4th drop down menu -->\n');
    document.write('<div id="dropmenu4" class="dropmenudiv" style="width: 163px;">\n');
    document.write('<a href="/gen/investor-relations?pid=5711" title="Corporate Profile">Corporate Profile</a>\n');
    document.write('<a href="/gen/landing-pages?pid=7735" title="Citizenship and Sustainability">Citizenship and Sustainability</a>\n');
    document.write('<a href="/gen/landing-pages?pid=3309" title="Industry Analyst Center">Industry Analyst Center</a>\n');
    document.write('<a href="/gen/corporate-citizenship?pid=5882" title="Intellectual Property">Intellectual Property</a>\n');
    document.write('<a href="/gen/press-room?pid=1748" title="The New AT&amp;T Laboratories">The New AT&amp;T Laboratories</a>\n');
    document.write('<a href="/gen/general?pid=7512" title="Doing Business With AT&amp;T">Doing Business With AT&amp;T</a>\n');
    document.write('<a href="/gen/general?pid=5479" title="Business Customer News">Business Customer News</a>\n');
    document.write('<a href="http://www.att.jobs" title="Careers">Careers</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<script type="text/javascript">\n');
    document.write('cssdropdown.startmainmenu("dropdownmenu")\n');
    document.write('</script>\n');
    document.write('<!-- END MAIN TOP MENU -->\n');

}


function fhrenderTopMenuAbsolute() {
    document.write('<!-- BEGIN MAIN TOP MENU -->\n');
    document.write('<div class="dropdownstyle" id="dropdownmenu">\n');
        document.write('<a HREF="http://www.att.com/gen/landing-pages?pid=5718" rel="dropmenu1" title="Investor Relations"><img src="http://www.att.com/Common/merger/images/navbar_01.gif" onclick="page(1)" width="148" height="27" border="0" id="dropmenu1_img" alt="Investor Relations"></a><a HREF="http://www.att.com/gen/landing-pages?pid=6080" rel="dropmenu2" title="Media Newsroom"><img src="http://www.att.com/Common/merger/images/navbar_02.gif" onclick="page(2)" id="dropmenu2_img" width="130" height="27" border="0" alt="Media Newsroom"></a><a HREF="http://www.att.com/gen/landing-pages?pid=3309" rel="dropmenu3" title="Industry Analyst Center"><img src="http://www.att.com/Common/merger/images/navbar_03.gif" onclick="page(3)" id="dropmenu3_img" width="177" height="27" border="0" alt="Industry Analyst Center"></a><a HREF="http://www.att.com/gen/landing-pages?pid=3309" rel="dropmenu4" title="Company Information"><img src="http://www.att.com/Common/merger/images/navbar_04.gif" onclick="page(4)" id="dropmenu4_img" width="163" height="27" border="0" alt="Company Information"></a>\n');
        document.write('</div>\n');
    document.write('<!--1st drop down menu -->\n');
    document.write('<div id="dropmenu1" class="dropmenudiv" style="width: 148px;">\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=290" title="Quarterly Earnings">Quarterly Earnings</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9186" title="Annual Report">Annual Report</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5647" title="Events and Presentations">Events and Presentations</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5609" title="Corporate Governance">Corporate Governance</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9532" title="Investor News">Investor News</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9533" title="Stockholder Services">Stockholder Services</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5644" title="Investor Contacts">Investor Contacts</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--2nd drop down menu -->\n');
    document.write('<div id="dropmenu2" class="dropmenudiv" style="width: 130px;">\n');

var strHREF = "http://www.att.com/gen/press-room?pid=4800&cdvn=news&newsfunction=searchresults";
var now = new Date();
var month = now.getMonth();
var month_start = month - 2;
var year = now.getFullYear();
var year_start = year;

if (month_start <= 0)
{
    month_start = month + 10;
    year_start = year - 1;
}

strHREF += "&beginning_month=" + month_start;
strHREF += "&beginning_year=" + year_start;
strHREF += "&ending_month=" + month;
strHREF += "&ending_year=" + year;

    document.write('<a href="' + strHREF + '">Releases</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9534" title="Products and Services">Products and Services</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=5834" title="Media Kits">Media Kits</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=6209" title="Multimedia Gallery">Multimedia Gallery</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=9201" title="Calendar of Events">Calendar of Events</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--3rd drop down menu -->\n');
    document.write('<div id="dropmenu3" class="dropmenudiv" style="width: 174px;">\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=4800&cdvn=news&newsfunction=searchresults&beginning_month=1&beginning_year=2008&ending_month=3&ending_year=2008" title="Analyst News">Analyst News</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=9201" title="Calendar of Events">Calendar of Events</a>\n');
    document.write('<a href="mailto:IndustryAnalystRelations@attnews.us" title="Request a Briefing">Request a Briefing</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--4th drop down menu -->\n');
    document.write('<div id="dropmenu4" class="dropmenudiv" style="width: 163px;">\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5711" title="Corporate Profile">Corporate Profile</a>\n');
    document.write('<a href="http://www.att.com/gen/landing-pages?pid=7735" title="Citizenship and Sustainability">Citizenship and Sustainability</a>\n');
    document.write('<a href="http://www.att.com/gen/corporate-citizenship?pid=7744" title="Strengthening Communities">Strengthening Communities</a>\n');
    document.write('<a href="http://www.att.com/gen/landing-pages?pid=3309" title="Industry Analyst Center">Industry Analyst Center</a>\n');
    document.write('<a href="http://www.att.com/gen/corporate-citizenship?pid=5882" title="Intellectual Property">Intellectual Property</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=1748" title="The New AT&amp;T Laboratories">The New AT&amp;T Laboratories</a>\n');
    document.write('<a href="http://www.att.com/gen/general?pid=7512" title="Doing Business With AT&amp;T">Doing Business With AT&amp;T</a>\n');
    document.write('<a href="http://www.att.com/gen/general?pid=5479" title="Business Customer News">Business Customer News</a>\n');
    document.write('<a href="http://www.att.jobs" title="Careers">Careers</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<script type="text/javascript">\n');
    document.write('cssdropdown.startmainmenu("dropdownmenu")\n');
    document.write('</script>\n');
    document.write('<!-- END MAIN TOP MENU -->\n');

}

// This menu added for DREAMmail to accommodate the SSL Address //

function fhrenderTopMenuAbsoluteDream() {

    document.write('<!-- BEGIN MAIN TOP MENU -->\n');
    document.write('<div class="dropdownstyle" id="dropdownmenu">\n');
    document.write('<a HREF="http://www.att.com/gen/landing-pages?pid=5718" rel="dropmenu1" title="Investor Relations"><img src="https://www.att.com/Common/merger/images/navbar_01.gif" onclick="page(1)" width="148" height="27" border="0" id="dropmenu1_img" alt="Investor Relations"></a><a HREF="http://www.att.com/gen/landing-pages?pid=6080" rel="dropmenu2" title="Media Newsroom"><img src="https://www.att.com/Common/merger/images/navbar_02.gif" onclick="page(2)" id="dropmenu2_img" width="130" height="27" border="0" alt="Media Newsroom"></a><a HREF="http://www.att.com/gen/landing-pages?pid=3309" rel="dropmenu3" title="Industry Analyst Center"><img src="https://www.att.com/Common/merger/images/navbar_03.gif" onclick="page(3)" id="dropmenu3_img" width="174" height="27" border="0" alt="Industry Analyst Center"></a><a HREF="http://www.att.com/gen/landing-pages?pid=3309" rel="dropmenu4" title="Company Information"><img src="https://www.att.com/Common/merger/images/navbar_04.gif" onclick="page(4)" id="dropmenu4_img" width="163" height="27" border="0" alt="Company Information"></a>\n');
    document.write('</div>\n');
    document.write('<!--1st drop down menu -->\n');
    document.write('<div id="dropmenu1" class="dropmenudiv" style="width: 147px;">\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=290" title="Quarterly Earnings">Quarterly Earnings</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9186" title="Annual Report">Annual Report</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5647" title="Events and Presentations">Events and Presentations</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5609" title="Corporate Governance">Corporate Governance</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9532" title="Investor News">Investor News</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9533" title="Stockholder Services">Stockholder Services</a>\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5644" title="Investor Contacts">Investor Contacts</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--2nd drop down menu -->\n');
    document.write('<div id="dropmenu2" class="dropmenudiv" style="width: 130px;">\n');

var strHREF = "http://www.att.com/gen/press-room?pid=4800&cdvn=news&newsfunction=searchresults";
var now = new Date();
var month = now.getMonth();
var month_start = month - 2;
var year = now.getFullYear();
var year_start = year;

if (month_start <= 0)
{
    month_start = month + 10;
    year_start = year - 1;
}

strHREF += "&beginning_month=" + month_start;
strHREF += "&beginning_year=" + year_start;
strHREF += "&ending_month=" + month;
strHREF += "&ending_year=" + year;

document.write('<a href="' + strHREF + '">Releases</a>\n');


    document.write('<a href="http://www.att.com/gen/investor-relations?pid=9534" title="Products and Services">Products and Services</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=5834" title="Media Kits">Media Kits</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=6209" title="Multimedia Gallery">Multimedia Gallery</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=9201" title="Calendar of Events">Calendar of Events</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--3rd drop down menu -->\n');
    document.write('<div id="dropmenu3" class="dropmenudiv" style="width: 174px;">\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=4800&cdvn=news&newsfunction=searchresults&beginning_month=1&beginning_year=2008&ending_month=3&ending_year=2008" title="Analyst News">Analyst News</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=9201" title="Calendar of Events">Calendar of Events</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=5036" title="Industry Analyst Contacts">Industry Analyst Contacts</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<!--4th drop down menu -->\n');
    document.write('<div id="dropmenu4" class="dropmenudiv" style="width: 163px;">\n');
    document.write('<a href="http://www.att.com/gen/investor-relations?pid=5711" title="Corporate Profile">Corporate Profile</a>\n');
    document.write('<a href="http://www.att.com/gen/landing-pages?pid=7735" title="Citizenship and Sustainability">Citizenship and Sustainability</a>\n');
    document.write('<a href="http://www.att.com/gen/corporate-citizenship?pid=7744" title="Strengthening Communities">Strengthening Communities</a>\n');
    document.write('<a href="http://www.att.com/gen/landing-pages?pid=3309" title="Industry Analyst Center">Industry Analyst Center</a>\n');
    document.write('<a href="http://www.att.com/gen/corporate-citizenship?pid=5882" title="Intellectual Property">Intellectual Property</a>\n');
    document.write('<a href="http://www.att.com/gen/press-room?pid=1748" title="The New AT&amp;T Laboratories">The New AT&amp;T Laboratories</a>\n');
    document.write('<a href="http://www.att.com/gen/general?pid=7512" title="Doing Business With AT&amp;T">Doing Business With AT&amp;T</a>\n');
    document.write('<a href="http://www.att.com/gen/general?pid=5479" title="Business Customer News">Business Customer News</a>\n');
    document.write('<a href="http://www.att.jobs" title="Careers">Careers</a>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<script type="text/javascript">\n');
    document.write('cssdropdown.startmainmenu("dropdownmenu")\n');
    document.write('</script>\n');
    document.write('<!-- END MAIN TOP MENU -->\n');

}


// END TOP NAVIGATION


// Main Menu Drop Down Scripts [END]
// ****************************************************************************

// ****************************************************************************
// Flash Embed Script [BEGIN]
// ****************************************************************************

/**
 * SWFObject v1.4.1: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formerly known as FlashObject. The name was changed for
 *   legal reasons.
 */
if(typeof deconcept == "undefined") var deconcept = new Object();




if(typeof deconcept.util == "undefined") deconcept.util = new Object();
if(typeof deconcept.SWFObjectUtil == "undefined") deconcept.SWFObjectUtil = new Object();
deconcept.SWFObject = function(swf, id, w, h, ver, c, useExpressInstall, quality, xiRedirectUrl, redirectUrl, detectKey){
    if (!document.createElement || !document.getElementById) { return; }
    this.DETECT_KEY = detectKey ? detectKey : 'detectflash';
    this.skipDetect = deconcept.util.getRequestParameter(this.DETECT_KEY);
    this.params = new Object();
    this.variables = new Object();
    this.attributes = new Array();
    if(swf) { this.setAttribute('swf', swf); }
    if(id) { this.setAttribute('id', id); }
    if(w) { this.setAttribute('width', w); }
    if(h) { this.setAttribute('height', h); }
    if(ver) { this.setAttribute('version', new deconcept.PlayerVersion(ver.toString().split("."))); }
    this.installedVer = deconcept.SWFObjectUtil.getPlayerVersion(this.getAttribute('version'), useExpressInstall);
    if(c) { this.addParam('bgcolor', c); }
    var q = quality ? quality : 'high';
    this.addParam('quality', q);
    this.setAttribute('useExpressInstall', useExpressInstall);
    this.setAttribute('doExpressInstall', false);
    var xir = (xiRedirectUrl) ? xiRedirectUrl : window.location;
    this.setAttribute('xiRedirectUrl', xir);
    this.setAttribute('redirectUrl', '');
    if(redirectUrl) { this.setAttribute('redirectUrl', redirectUrl); }
}
deconcept.SWFObject.prototype = {
    setAttribute: function(name, value){
        this.attributes[name] = value;
    },
    getAttribute: function(name){
        return this.attributes[name];
    },
    addParam: function(name, value){
        this.params[name] = value;
    },
    getParams: function(){
        return this.params;
    },
    addVariable: function(name, value){
        this.variables[name] = value;
    },
    getVariable: function(name){
        return this.variables[name];
    },
    getVariables: function(){
        return this.variables;
    },
    getVariablePairs: function(){
        var variablePairs = new Array();
        var key;
        var variables = this.getVariables();
        for(key in variables){
            variablePairs.push(key +"="+ variables[key]);
        }
        return variablePairs;
    },
    getSWFHTML: function() {
        var swfNode = "";
        if (navigator.plugins && navigator.mimeTypes && navigator.mimeTypes.length) { // netscape plugin architecture
            if (this.getAttribute("doExpressInstall")) this.addVariable("MMplayerType", "PlugIn");
            swfNode = '<embed type="application/x-shockwave-flash" src="'+ this.getAttribute('swf') +'" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'"';
            swfNode += ' id="'+ this.getAttribute('id') +'" name="'+ this.getAttribute('id') +'" ';
            var params = this.getParams();
             for(var key in params){ swfNode += [key] +'="'+ params[key] +'" '; }
            var pairs = this.getVariablePairs().join("&");
             if (pairs.length > 0){ swfNode += 'flashvars="'+ pairs +'"'; }
            swfNode += '/>';
        } else { // PC IE
            if (this.getAttribute("doExpressInstall")) this.addVariable("MMplayerType", "ActiveX");
            swfNode = '<object id="'+ this.getAttribute('id') +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+ this.getAttribute('width') +'" height="'+ this.getAttribute('height') +'">';
            swfNode += '<param name="movie" value="'+ this.getAttribute('swf') +'" />';
            var params = this.getParams();
            for(var key in params) {
             swfNode += '<param name="'+ key +'" value="'+ params[key] +'" />';
            }
            var pairs = this.getVariablePairs().join("&");
            if(pairs.length > 0) {swfNode += '<param name="flashvars" value="'+ pairs +'" />';}
            swfNode += "</object>";
        }
        return swfNode;
    },
    write: function(elementId){
        if(this.getAttribute('useExpressInstall')) {
            // check to see if we need to do an express install
            var expressInstallReqVer = new deconcept.PlayerVersion([6,0,65]);
            if (this.installedVer.versionIsValid(expressInstallReqVer) && !this.installedVer.versionIsValid(this.getAttribute('version'))) {
                this.setAttribute('doExpressInstall', true);
                this.addVariable("MMredirectURL", escape(this.getAttribute('xiRedirectUrl')));
                document.title = document.title.slice(0, 47) + " - Flash Player Installation";
                this.addVariable("MMdoctitle", document.title);
            }
        }
        if(this.skipDetect || this.getAttribute('doExpressInstall') || this.installedVer.versionIsValid(this.getAttribute('version'))){
            var n = (typeof elementId == 'string') ? document.getElementById(elementId) : elementId;
            n.innerHTML = this.getSWFHTML();
            return true;
        }else{
            if(this.getAttribute('redirectUrl') != "") {
                document.location.replace(this.getAttribute('redirectUrl'));
            }
        }
        return false;
    }
}

/* ---- detection functions ---- */
deconcept.SWFObjectUtil.getPlayerVersion = function(reqVer, xiInstall){
    var PlayerVersion = new deconcept.PlayerVersion([0,0,0]);
    if(navigator.plugins && navigator.mimeTypes.length){
        var x = navigator.plugins["Shockwave Flash"];
        if(x && x.description) {
            PlayerVersion = new deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/, "").replace(/(\s+r|\s+b[0-9]+)/, ".").split("."));
        }
    }else{
        try{
            var axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
            for (var i=3; axo!=null; i++) {
                axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
                PlayerVersion = new deconcept.PlayerVersion([i,0,0]);
            }
        }catch(e){}
        if (reqVer && PlayerVersion.major > reqVer.major) return PlayerVersion; // version is ok, skip minor detection
        // this only does the minor rev lookup if the user's major version
        // is not 6 or we are checking for a specific minor or revision number
        // see http://blog.deconcept.com/2006/01/11/getvariable-setvariable-crash-internet-explorer-flash-6/
        if (!reqVer || ((reqVer.minor != 0 || reqVer.rev != 0) && PlayerVersion.major == reqVer.major) || PlayerVersion.major != 6 || xiInstall) {
            try{
                PlayerVersion = new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));
            }catch(e){}
        }
    }
    return PlayerVersion;
}
deconcept.PlayerVersion = function(arrVersion){
    this.major = parseInt(arrVersion[0]) != null ? parseInt(arrVersion[0]) : 0;
    this.minor = parseInt(arrVersion[1]) || 0;
    this.rev = parseInt(arrVersion[2]) || 0;
}
deconcept.PlayerVersion.prototype.versionIsValid = function(fv){
    if(this.major < fv.major) return false;
    if(this.major > fv.major) return true;
    if(this.minor < fv.minor) return false;
    if(this.minor > fv.minor) return true;
    if(this.rev < fv.rev) return false;
    return true;
}
/* ---- get value of query string param ---- */
deconcept.util = {
    getRequestParameter: function(param){
        var q = document.location.search || document.location.hash;
        if(q){
            var startIndex = q.indexOf(param +"=");
            var endIndex = (q.indexOf("&", startIndex) > -1) ? q.indexOf("&", startIndex) : q.length;
            if (q.length > 1 && startIndex > -1) {
                return q.substring(q.indexOf("=", startIndex)+1, endIndex);
            }
        }
        return "";
    }
}
/* fix for video streaming bug */
deconcept.SWFObjectUtil.cleanupSWFs = function() {
    var objects = document.getElementsByTagName("OBJECT");
    for (var i=0; i < objects.length; i++) {
        for (var x in objects[i]) {
            if (typeof objects[i][x] == 'function') {
                objects[i][x] = null;
            }
        }
    }
}
if (typeof window.onunload == 'function') {
    var oldunload = window.onunload;
        window.onunload = function() {
        deconcept.SWFObjectUtil.cleanupSWFs();
        oldunload();
    }
} else {
    window.onunload = deconcept.SWFObjectUtil.cleanupSWFs;
}
/* add Array.push if needed (ie5) */
if (Array.prototype.push == null) { Array.prototype.push = function(item) { this[this.length] = item; 

return this.length; }}

/* add some aliases for ease of use/backwards compatibility */
var getQueryParamValue = deconcept.util.getRequestParameter;
var FlashObject = deconcept.SWFObject; // for legacy support
var SWFObject = deconcept.SWFObject;

// Flash Embed Script [END]
// ****************************************************************************


//*****************************************************************************
// Corporate Profile Show/Hide Script
//*****************************************************************************

function cpSwitchMenu(obj, totalNum) {
var el;

for(j = 1; j <= totalNum; j++)
{
    el = document.getElementById('Box' + j);

    if(obj == j)
    {
        el.style.display = '';
    }
    else
    {
        el.style.display = 'none';
    }
}

}

function cpSwitchMenuArchive(obj, totalNum) {
var el;



for(j = 1; j <= totalNum; j++)
{
    el = document.getElementById('Box' + j);

    
    if(obj == j)
    {
        el.style.display = 'block';
         
    }
    else
    {
        el.style.display = 'none';
    }
}

}

function cpSwitchMenuSpecial(obj) {
var el;

    el = document.getElementById('Box' + obj);
    el2 = document.getElementById('Box13');

    if(el.style.display == 'none')
    {
        el.style.display = '';
        el2.style.display = 'none';
    }
    else
    {
        el.style.display = 'none';
    }

}


function cpShowAll(totalNum)
{
    for(i = 1; i <= totalNum; i++)
    {
        cplink = document.getElementById('cplink' + i);
        cplink.className = '';

        Box = document.getElementById('Box' + i);
        Box.style.display = '';

        cpShowAllvar = document.getElementById('cpShowAll-' + i);
        cpShowAllvar.style.display = 'none';
    }
}

function cpChange(id, newClass, totalNum) {

for(i = 1; i <= totalNum; i++)
{
    cplink = document.getElementById('cplink' + i);
    cplink.className = '';
}

identity=document.getElementById(id);
identity.className=newClass;

}


//*****************************************************************************
// Media Kit - Common Show/Hide Script
//*****************************************************************************

function ToggleContent()
{
    var elemContent = document.getElementById("viewContent");
    var elemLink = document.getElementById("viewLink");

    if (elemContent.style.display == "none") {
        elemContent.style.display = "";
        elemLink.innerHTML = "";
    }
    else {
        elemContent.style.display = "none";
        elemLink.innerHTML = "";
    }
}


//*************************************************************
//**** Pre-existing Function
//*************************************************************


function ToggleAnnouncements()
{
    var elemAllNews = document.getElementById("allAnnounce");
    var elemView = document.getElementById("viewToggle3");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = '<A HREF="#news" STYLE="font-size: 12px!important;"><STRONG>Hide Additional Market Announcements</STRONG></A>';
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = '<A HREF="#news" STYLE="font-size: 12px!important;"><STRONG>View Additional Market Announcements</STRONG></A>';
    }
}


function ToggleSpeakers()
{
    var elemAllNews = document.getElementById("speakers");
    var elemView = document.getElementById("viewSpeakers");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = '<A HREF="#news" STYLE="font-size: 12px !important;"><STRONG>Hide Additional Speakers</STRONG></A>';
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = '<A HREF="#news" STYLE="font-size: 12px !important;"><STRONG>View Additional Speakers</STRONG></A>';
    }
}


function ToggleMKNews()
{
    var elemAllNews = document.getElementById("MKNews");
    var elemView = document.getElementById("viewToggleMK");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = '<A HREF="#news" STYLE="font-size: 12px !important;"><STRONG>Hide Additional News Releases</STRONG></A>';
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = '<A HREF="#news" STYLE="font-size: 12px !important;"><STRONG>View Additional News Releases</STRONG></A>';
    }
}


function ToggleAllNews()
{
    var elemAllNews = document.getElementById("allNews");
    var elemView = document.getElementById("viewToggle");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = "<A HREF=&#34;#news&#34; STYLE=&#34;font-size: 12px;&#34;><STRONG>Hide Additional News Releases</STRONG></A>";
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = "<A HREF=&#34;#news&#34; STYLE=&#34;font-size: 12px;&#34;><STRONG>View Additional News Releases</STRONG></A>";
    }
}

function ToggleAllCaseStudies()
{
    var elemAllNews = document.getElementById("allCaseStudies");
    var elemView = document.getElementById("viewToggle2");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = "Hide additional case studies";
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = "View all case studies";
    }
}

function toggleCaseStudies(idView, idAllCases)
{
    var elemView = document.getElementById(idView);
    var elemAllCases = document.getElementById(idAllCases);

    if (elemAllCases.style.display == "none") {
        elemAllCases.style.display = "";
        elemView.innerHTML = "Hide additional case studies";
    }
    else {
        elemAllCases.style.display = "none";
        elemView.innerHTML = "View all case studies";
    }
}

function OrderCaseStudies()
{
    var alpha = document.getElementById("alphabetical");
    var chrono = document.getElementById("chronological");
    var order = document.getElementById("orderView");

    if (alpha.style.display == "none")
    {
        alpha.style.display = "block";
        chrono.style.display = "none";
        order.innerHTML = "View Case Studies by Date";
    }
    else
    {
        alpha.style.display = "none";
        chrono.style.display = "block";
        order.innerHTML = "View Case Studies by Name";
    }
}

function ToggleNews()
{
    var elemAllNews = document.getElementById('allNews');
    var elemView = document.getElementById('viewToggle');

    if (elemAllNews.style.display == 'none') {
        elemAllNews.style.display = '';
        elemView.innerHTML = '<UL class="icons"><LI class="icn-none"><A href="#news"><strong>Hide Additional News Releases</strong></A></LI>';
    }
    else {
        elemAllNews.style.display = 'none';
        elemView.innerHTML = '<UL class="icons"><LI class="icn-none"><A href="#news"><strong>View Additional News Releases</strong></A></LI>';
    }
}

function ToggleArticles()
{
    var elemAllNews = document.getElementById('allArticles');
    var elemView = document.getElementById('viewToggle3');

    if (elemAllNews.style.display == 'none') {
        elemAllNews.style.display = '';
        elemView.innerHTML = '<UL class="icons"><LI class="icn-none"><A href="#news"><strong>Hide Additional News Articles</strong></A></LI>';
    }
    else {
        elemAllNews.style.display = 'none';
        elemView.innerHTML = '<UL class="icons"><LI class="icn-none"><A href="#news"><strong>View Additional News Articles</strong></A></LI>';
    }
}


// ****************************************************************************
// DEVELOPMENT SCRIPT - Common Right Menu
// ****************************************************************************

function fhRightMenuCommon() {

    document.write('<DIV CLASS="section clear">\n');
    document.write('<H3>Receive News</H3>\n');
    document.write('<UL>');
    //document.write('<LI>E-Mail <A HREF="https://pref.news.attnews.us/attnews/NAMPage.aspx?DMAILVAR_UNSUB=" TITLE="Sign Up">Sign Up</A> | <A HREF="https://pref.news.attnews.us/attnews/prefs.aspx" TITLE="Log in">Log In</A></LI>');
    document.write('<LI><img class="feed-icon" alt="RSS Feed" src="/Common/merger/images/feed-icon-12x12.gif" width="12" height="12"> <A HREF="http://att.centralcast.net/rss/" TITLE="RSS News Releases">RSS News Releases</A></LI>');
    document.write('<LI><img class="feed-icon" alt="RSS Feed" src="/Common/merger/images/feed-icon-12x12.gif" width="12" height="12"> <A HREF="http://att.centralcast.net/rss/podcasts.aspx" TITLE="RSS Podcasts">RSS Podcasts</A></LI>');
//  document.write('<li><a href="http://www.flickr.com/attnews/" target="_blank">Follow AT&amp;T on Twitter</a></li>');
//  document.write('<li><a href="http://www.youtube.com/user/ShareATT/" target="_blank">Follow AT&amp;T YouTube Channel</a></li>');
//  document.write('<li><a href="http://www.flickr.com/shareatt/" target="_blank">Follow AT&amp;T Flickr Photostream</a></li>');
    document.write('<LI><A HREF="http://www.att.com/gen/press-room?pid=9703" TITLE="Learn More about receiving AT&amp;T news.">Learn More</A> about receiving AT&amp;T news.</LI>');
    document.write('</UL>');
    document.write('</DIV>');
    document.write('\n');
    document.write('<DIV CLASS="section">');
    document.write('<H3>Media Resources</H3>');
    document.write('<UL>');
    document.write('\n');
    document.write('<LI><A HREF="/gen/press-room?pid=6209" TITLE="Multimedia Gallery" title="Multimedia Gallery">Multimedia Gallery</A></LI>');
    document.write('<LI><A HREF="/gen/landing-pages?pid=7728" TITLE="Podcasts" title="Podcasts">Podcasts</A></LI>');
    document.write('<LI><A HREF="/gen/press-room?pid=1916" TITLE="Media Inquiries" title="Media Inquiries">Media Inquiries</A></LI>');
    document.write('<LI><A HREF="/gen/press-room?pid=5834" TITLE="Media Kits" title="Media Kits">Media Kits</A></LI>');
    document.write('\n');
    document.write('</UL>');
    document.write('</DIV>');
}

function fhRightMenuCommonAbsolute() {

    document.write('<DIV CLASS="section clear">\n');
    document.write('<H3>Receive News</H3>\n');
    document.write('<UL>');
    //document.write('<LI>E-Mail <A HREF="https://pref.news.attnews.us/attnews/NAMPage.aspx?DMAILVAR_UNSUB=" TITLE="Sign Up">Sign Up</A> | <A HREF="https://pref.news.attnews.us/attnews/prefs.aspx" TITLE="Log in">Log In</A></LI>');
    document.write('<LI><img class="feed-icon" alt="RSS Feed" src="http://www.att.com/Common/merger/images/feed-icon-12x12.gif" width="12" height="12"> <A HREF="http://att.centralcast.net/rss/" TITLE="RSS News Releases">RSS News Releases</A></LI>');
    document.write('<LI><img class="feed-icon" alt="RSS Feed" src="http://www.att.com/Common/merger/images/feed-icon-12x12.gif" width="12" height="12"> <A HREF="http://att.centralcast.net/rss/podcasts.aspx" TITLE="RSS Podcasts">RSS Podcasts</A></LI>');
    document.write('<LI><A HREF="http://www.att.com/gen/press-room?pid=9703" TITLE="Learn More about receiving AT&amp;T news.">Learn More</A> about receiving AT&amp;T news.</LI>');
    document.write('</UL>');
    document.write('</DIV>');
    document.write('\n');
    document.write('<DIV CLASS="section">');
    document.write('<H3>Media Resources</H3>');
    document.write('<UL>');
    document.write('\n');
    document.write('<LI><A HREF="http://www.att.com/gen/press-room?pid=6209" TITLE="Multimedia Gallery" title="Multimedia Gallery">Multimedia Gallery</A></LI>');
    document.write('<LI><A HREF="http://www.att.com/gen/landing-pages?pid=7728" TITLE="Podcasts" title="Podcasts">Podcasts</A></LI>');
    document.write('<LI><A HREF="http://www.att.com/gen/press-room?pid=1916" TITLE="Media Inquiries" title="Media Inquiries">Media Inquiries</A></LI>');
    document.write('<LI><A HREF="http://www.att.com/gen/press-room?pid=5834" TITLE="Media Kits" title="Media Kits">Media Kits</A></LI>');
    document.write('\n');
    document.write('</UL>');
    document.write('</DIV>');

}

function fhRightMenuCommonAbsoluteShort() {

    document.write('<DIV CLASS="section clear">\n');
    document.write('<H3>Receive News</H3>\n');
    document.write('<UL>');
    //document.write('<LI>E-Mail <A HREF="https://pref.news.attnews.us/attnews/NAMPage.aspx?DMAILVAR_UNSUB=" TITLE="Sign Up">Sign Up</A> | <A HREF="https://pref.news.attnews.us/attnews/prefs.aspx" TITLE="Log in">Log In</A></LI>');
    document.write('<LI><img class="feed-icon" alt="RSS Feed" src="http://www.att.com/Common/merger/images/feed-icon-12x12.gif" width="12" height="12"> <A HREF="http://att.centralcast.net/rss/" TITLE="RSS News Releases">RSS News Releases</A></LI>');
    document.write('<LI><img class="feed-icon" alt="RSS Feed" src="http://www.att.com/Common/merger/images/feed-icon-12x12.gif" width="12" height="12"> <A HREF="http://att.centralcast.net/rss/podcasts.aspx" TITLE="RSS Podcasts">RSS Podcasts</A></LI>');
    document.write('<LI><A HREF="http://www.att.com/gen/press-room?pid=9703" TITLE="Learn More about receiving AT&amp;T news.">Learn More</A> about receiving AT&amp;T news.</LI>');
    document.write('</UL>');
    document.write('</DIV>');
    document.write('\n');
}



// ****************************************************************************
// DEVELOPMENT SCRIPT - Business Customer News - Midsize menu
// ****************************************************************************

function fhaddmidsizemenu() {

    document.write('<div class="section">\n');
    document.write('<h3>View by Industry</h3>\n');
    document.write('<ul>\n');
    document.write('<li><a href="/gen/general?pid=7784" title="Banking">Banking</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7785" title="Education">Education</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7786" title="Government">Government</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7797" title="Manufacturing">Manufacturing</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7787" title="Medical">Medical</a></li>\n');

    document.write('<li><a href="/gen/general?pid=7788" title="Retail">Retail</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7789" title="Other">Other</a></li>\n');
    document.write('</ul>\n');
    document.write('</div>\n');
    document.write('\n');

    document.write('<div class="section">\n');
    document.write('<h3>View by Portfolio</h3>\n');
    document.write('<ul>\n');
    document.write('<li><a href="/gen/general?pid=7790" title="Business Continuity &amp; Security">Business Continuity &amp; Security</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7791" title="Contact Centers">Contact Centers</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7792" title="IP Services">IP Services</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7793" title="Networking (VPN, Voice, Data Solutions)">Networking (VPN, Voice, Data Solutions)</a></li>\n');
    document.write('</ul>\n');
    document.write('</div>\n');

}
// ****************************************************************************
// DEVELOPMENT SCRIPT - Business Customer News - Enterprise menu
// ****************************************************************************

function fhaddenterprisemenu() {
    document.write('<div class="section">\n');
    document.write('<h3>View by Industry</h3>\n');
    document.write('<ul>\n');
    document.write('<li><a href="/gen/general?pid=5486" title="Banking">Banking</a></li>\n');
    document.write('<li><a href="/gen/general?pid=5488" title="Education">Education</a></li>\n');
    document.write('<li><a href="/gen/general?pid=5489" title="Government">Government</a></li>\n');
    document.write('<li><a href="/gen/general?pid=6263" title="Manufacturing">Manufacturing</a></li>\n');
    document.write('<li><a href="/gen/general?pid=5490" title="Medical">Medical</a></li>\n');
    document.write('<li><a href="/gen/general?pid=5491" title="Retail">Retail</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7794" title="Other">Other</a></li>\n');
    document.write('</ul>\n');
    document.write('</div>\n');
    document.write('\n');
    document.write('<div class="section">\n');
    document.write('<h3>View by Portfolio</h3>\n');
    document.write('<ul>\n');
    document.write('<li><a href="/gen/general?pid=6262" title="Business Continuity &amp; Security">Business Continuity &amp; Security</a></li>\n');
    document.write('<li><a href="/gen/general?pid=7795" title="Contact Centers">Contact Centers</a></li>\n');
    document.write('<li><a href="/gen/general?pid=6252" title="IP Services">IP Services</a></li>\n');
    document.write('<li><a href="/gen/general?pid=6259" title="Networking (VPN, Voice, Data Solutions)">Networking (VPN, Voice, Data Solutions)</a></li>\n');
    document.write('</ul>\n');
    document.write('</div>\n');


}


//****************************************************************************
//Right Menu Include - Investor Relations
//****************************************************************************

function renderRightMenu1()  {
   pageId = queryString('pid').toString();

var navHTML       = '<DIV CLASS="nav-box">';
navHTML       += '<UL>';
navHTML       += '<LI';
if(pageId == 5718 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/landing-pages?pid=5718" TITLE="Investor Relations Home" onClick="javascript:urchinTracker(\'/outgoing/ir_5718\');">Investor Relations Home</A></LI>';
navHTML       += '<LI';
if(pageId == 5711 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5711" TITLE="Corporate Profile" onClick="javascript:urchinTracker(\'/outgoing/ir_5711\');">Corporate Profile</A></LI>';
navHTML       += '<LI';
if(pageId == 9531 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9531" title="Financials/Debt">Financials/Debt</A></LI>';
//navHTML += '><A HREF="/gen/investor-relations?pid=9531" title="Financials">Financials</A></LI>';
navHTML       += '<LI';
if(pageId == 5647 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5647" title="Events and Presentations">Events and Presentations</A></LI>';
navHTML       += '<LI';
if(pageId == 9532 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9532" title="Investor News">Investor News</A></LI>';
navHTML       += '<LI';
if(pageId == 5691 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5691" title="Reports and SEC Filings">Reports and SEC Filings</A></LI>';
navHTML       += '<LI';
if(pageId == 9533 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9533" title="Stockholder Services">Stockholder Services</A></LI>';
navHTML       += '<LI';
if(pageId == 5644 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5644" onClick="javascript:urchinTracker(\'/outgoing/ir_5644\');" title="Investor Contacts">Investor Contacts</A></LI>';
navHTML       += '<LI';
if(pageId == 5609 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5609" TITLE="Corporate Governance" onClick="javascript:urchinTracker(\'/outgoing/ir_5609\');">Corporate Governance</A></LI>';
navHTML       += '<LI';
if(pageId == 9534 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9534" title="Key Products">Key Products</A></LI>';
navHTML       += '<LI><A HREF="http://phx.corporate-ir.net/phoenix.zhtml?c=113088&p=irol-alerts" onClick="javascript:urchinTracker(\'/outgoing/ir_Financial_Alerts\');" title="Subscribe to Financial E-mail Alerts">Subscribe to Financial E-mail Alerts</A></LI>';
navHTML       += '</UL>';
navHTML       += '</DIV>';
navHTML       += '<DIV STYLE="background: url(http://www.att.com/Common/merger/images/bkg-ad.gif) no-repeat bottom right;margin-top:10px;border:1px solid #ccc;width:208px;">';
navHTML       += '<P STYLE="padding:0;margin:11px 13px; font-family:Verdana, Helvetica, sans-serif; font-size:1.4em; color:#008ec2; font-weight:bold;">AT&amp;T 2009 Annual Meeting of Stockholders</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px;"><A HREF="http://www.att.com/gen/general?pid=13168">View</a> the 2009 Proxy Statement.</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px;"><A HREF="http://www.att.com/gen/investor-relations?pid=9186">View</a> the 2008 Annual Report.</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px 0 13px;"><A HREF="http://www.att.com/gen/investor-relations?pid=7771">View</a> Final 2009 Voting Results.</P><BR /><BR />';
navHTML       += '</DIV>';
document.write(navHTML);
}



//****************************************************************************
//Right Menu Include - Investor Relations
//****************************************************************************

function renderRightMenu8()  {
   pageId = queryString('pid').toString();

var navHTML       = '<DIV CLASS="nav-box">';
navHTML       += '<UL>';
navHTML       += '<LI';
if(pageId == 5718 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/landing-pages?pid=5718" TITLE="Investor Relations Home" onClick="javascript:urchinTracker(\'/outgoing/ir_5718\');">Investor Relations Home</A></LI>';
navHTML       += '<LI';
if(pageId == 5711 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5711" TITLE="Corporate Profile" onClick="javascript:urchinTracker(\'/outgoing/ir_5711\');">Corporate Profile</A></LI>';
navHTML       += '<LI';
if(pageId == 9531 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9531" title="Financials/Debt">Financials/Debt</A></LI>';
//navHTML += '><A HREF="/gen/investor-relations?pid=9531" title="Financials">Financials</A></LI>';
navHTML       += '<LI';
if(pageId == 5647 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5647" title="Events and Presentations">Events and Presentations</A></LI>';
navHTML       += '<LI';
if(pageId == 9532 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9532" title="Investor News">Investor News</A></LI>';
navHTML       += '<LI';
if(pageId == 5691 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5691" title="Reports and SEC Filings">Reports and SEC Filings</A></LI>';
navHTML       += '<LI';
if(pageId == 9533 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9533" title="Stockholder Services">Stockholder Services</A></LI>';
navHTML       += '<LI';
if(pageId == 5644 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5644" onClick="javascript:urchinTracker(\'/outgoing/ir_5644\');" title="Investor Contacts">Investor Contacts</A></LI>';
navHTML       += '<LI';
if(pageId == 5609 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=5609" TITLE="Corporate Governance" onClick="javascript:urchinTracker(\'/outgoing/ir_5609\');">Corporate Governance</A></LI>';
navHTML       += '<LI';
if(pageId == 9534 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="/gen/investor-relations?pid=9534" title="Key Products">Key Products</A></LI>';
navHTML       += '<LI><A HREF="http://phx.corporate-ir.net/phoenix.zhtml?c=113088&p=irol-alerts" onClick="javascript:urchinTracker(\'/outgoing/ir_Financial_Alerts\');" title="Subscribe to Financial E-mail Alerts">Subscribe to Financial E-mail Alerts</A></LI>';
navHTML       += '</UL>';
navHTML       += '</DIV>';
navHTML       += '<DIV STYLE="background: url(http://www.att.com/Common/merger/images/bkg-ad.gif) no-repeat bottom right;margin-top:10px;border:1px solid #ccc;width:208px;">';
navHTML       += '<P STYLE="padding:0;margin:11px 13px; font-family:Verdana, Helvetica, sans-serif; font-size:1.4em; color:#008ec2; font-weight:bold;">AT&amp;T 2009 Annual Meeting of Stockholders</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px;"><A HREF="http://www.att.com/gen/general?pid=13168">View</a> the 2009 Proxy Statement.</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px;"><A HREF="http://www.att.com/gen/investor-relations?pid=9186">View</a> the 2008 Annual Report.</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px 0 13px;"><A HREF="http://www.att.com/gen/investor-relations?pid=7771">View</a> Final 2009 Voting Results.</P><BR /><BR />';
navHTML       += '</DIV>';
document.write(navHTML);
}


function renderStockChartSm() {
var stockChartSm       = '<A HREF="http://phx.corporate-ir.net/phoenix.zhtml?c=113088&amp;p=irol-stockQuote" TITLE="Click for Price Quotes &amp; Charts" ONCLICK="javascript:urchinTracker(\'/outgoing/ir_stockQuote\');"><IMG SRC="http://quotes.corporate-ir.net/media_files/irol/11/113088/QI/t_qi_1.gif" ALT="Stock Information" TITLE="Click for Price Quotes &amp; Charts" WIDTH="210" HEIGHT="245" BORDER="0" CLASS="banner-sidebar"></A>';
document.write(stockChartSm);
}

function renderStockChartLg() {
var stockChartLg       = '<A HREF="http://phx.corporate-ir.net/phoenix.zhtml?c=113088&amp;p=irol-stockQuote" TITLE="Click for Price Quotes &amp; Charts" ONCLICK="javascript:urchinTracker(\'/outgoing/ir_stockQuote\');"><IMG SRC="http://quotes.corporate-ir.net/media_files/irol/11/113088/QI/t_qi_1.gif" ALT="Stock Information" TITLE="Click for Price Quotes &amp; Charts" WIDTH="210" HEIGHT="245" BORDER="0" CLASS="banner-sidebar"></A>';
document.write(stockChartLg);
}

//****************************************************************************
//Right Menu Include - Investor Relations (updated 5/1/2007)
//****************************************************************************

function renderRightMenu1abs() {
   pageId = queryString('pid').toString();

var navHTML       = '<DIV CLASS="nav-box">';
navHTML       += '<UL>';
navHTML       += '<LI';
if(pageId == 5718 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/landing-pages?pid=5718" TITLE="Investor Relations Home">Investor Relations Home</A></LI>';
navHTML       += '<LI';
if(pageId == 5711 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=5711" TITLE="Corporate Profile">Corporate Profile</A></LI>';
navHTML       += '<LI';
if(pageId == 9531 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=9531" title="Financials/Debt">Financials/Debt</A></LI>';
//navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=9531" title="Financials">Financials</A></LI>';
navHTML       += '<LI';
if(pageId == 5647 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=5647" title="Events and Presentations">Events and Presentations</A></LI>';
navHTML       += '<LI';
if(pageId == 9532 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=9532" title="Investor News">Investor News</A></LI>';
navHTML       += '<LI';
if(pageId == 5691 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=5691" title="Reports and SEC Filings">Reports and SEC Filings</A></LI>';
navHTML       += '<LI';
if(pageId == 9533 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=9533" title="Stockholder Services">Stockholder Services</A></LI>';
navHTML       += '<LI';
if(pageId == 5644 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=5644" title="Investor Contacts">Investor Contacts</A></LI>';
navHTML       += '<LI';
if(pageId == 5609 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=5609" TITLE="Corporate Governance" onClick="javascript:urchinTracker(\'/outgoing/ir_5609\');">Corporate Governance</A></LI>';
navHTML       += '<LI';
if(pageId == 9534 ) { navHTML += ' class="current" ';}
navHTML += '><A HREF="http://www.att.com/gen/investor-relations?pid=9534" title="Key Products">Key Products</A></LI>';
navHTML       += '<LI><A HREF="http://phx.corporate-ir.net/phoenix.zhtml?c=113088&p=irol-alerts" title="Subscribe to Financial E-mail Alerts">Subscribe to Financial E-mail Alerts</A></LI>';
navHTML       += '</UL>';
navHTML       += '</DIV>';
navHTML       += '<DIV STYLE="background: url(http://www.att.com/Common/merger/images/bkg-ad.gif) no-repeat bottom right;margin-top:10px;border:1px solid #ccc;width:208px;">';
navHTML       += '<P STYLE="padding:0;margin:11px 13px; font-family:Verdana, Helvetica, sans-serif; font-size:1.4em; color:#008ec2; font-weight:bold;">AT&amp;T 2009 Annual Meeting of Stockholders</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px;"><A HREF="http://www.att.com/gen/general?pid=13168">View</a> the 2009 Proxy Statement.</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px;"><A HREF="http://www.att.com/gen/investor-relations?pid=9186">View</a> the 2008 Annual Report.</P>';
navHTML       += '<P STYLE="padding:0;margin:0 13px 0 13px;"><A HREF="http://www.att.com/gen/investor-relations?pid=7771">View</a> Final 2009 Voting Results.</P><BR /><BR />';
navHTML       += '</DIV>';
document.write(navHTML);
}


//****************************************************************************
//Right Menu Include - Industry Analyst
//****************************************************************************

function renderRightMenu2() {

document.write('<DIV CLASS="section">');
document.write('<H3>Customer Education</H3>');

document.write('<UL>');
document.write('<LI><A HREF="/gen/landing-pages?pid=6456" title="Home">Home</A></LI>');
document.write('</UL>');
document.write('<H3>Identity Theft</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/press-room?pid=8137" title="Identity Theft Home">Identity Theft Home</A></LI>');
document.write('<LI><A HREF="/gen/press-room?pid=6048" title="Spoofing or Phishing">Spoofing or Phishing</A></LI>');
document.write('<LI><A HREF="/gen/press-room?pid=6047" title="Do-Not-Call List Scam">"Do-Not-Call" List Scam</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Social Engineering</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/press-room?pid=6045" title="809 Area Code Scam">809 Area Code Scam</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Deceptive Sales Practices</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/press-room?pid=8136" title="Deceptive Sales Practices Home">Deceptive Sales Practices Home</A></LI>');
document.write('<LI><A HREF="/gen/press-room?pid=6049" title="Slamming">Slamming</A></LI>');
document.write('<LI><A HREF="/gen/press-room?pid=6083" title="Cramming">Cramming</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Solutions to Protect Online Users</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/press-room?pid=8134" title="Tips to Protect Computers and Personal Information">Tips to Protect Computers and Personal Information</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Internet Safety for Kids and Teens</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/general?pid=1412" title="Safety for Children">Safety for Children</A></LI>');
document.write('<LI><A HREF="/gen/general?pid=6449" title="Internet Safety 101 for Parents">Internet Safety 101 for Parents</A></LI>');
document.write('<LI><A HREF="/gen/general?pid=9123" title="Online Safety Initiatives">Online Safety Initiatives</A></LI>');
document.write('<LI><A HREF="/gen/general?pid=1391" TITLE="Internet Safety Game for Kids">Internet Safety Game for Kids</A></LI>');
document.write('<LI><A HREF="/Common/flash/inspector_gui/mission_bandwidth.html" TITLE="Case of the Bandwidth Bandit">Case of the Bandwidth Bandit</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Internet Privacy</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/general?pid=1395" title="Internet Safety Tips for Protecting Personal Information">Internet Safety Tips for Protecting Personal Information</A></LI>');
document.write('<LI><A HREF="/gen/general?pid=1401" title="Spam">Spam</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Internet Security</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/general?pid=1409" title="Computer Viruses and Worms">Computer Viruses and Worms</A></LI>');
document.write('<LI><A HREF="/gen/general?pid=6455" title="Spyware and Adware">Spyware and Adware</A></LI>');
document.write('<LI><A HREF="/gen/press-room?pid=6504" title="Security Tips for Wireless Internet Users">Security Tips for Wireless Internet Users</A></LI>');
document.write('<LI><A HREF="/gen/general?pid=1407" title="Security Tips for Computer Protection">Security Tips for Computer Protection</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
document.write('<DIV CLASS="section">');
document.write('<H3>Emergency Preparedness</H3>');
document.write('<UL>');
document.write('<LI><A HREF="/gen/general?pid=1325&DCMP=att_vitalconnections" title="Vital Connections">Vital Connections</A></LI>');
document.write('</UL>');
document.write('</DIV>');
document.write('\n');
/*document.write('<DIV CLASS="section">');
document.write('<H3>Hurricane Preparedness</H3>');
document.write('<UL>');
document.write('<LI><A HREF="http://bellsouth.mediaroom.com/index.php?s=education" title="BellSouth">BellSouth</A></LI>');
document.write('<LI><A HREF="http://cingular.mediaroom.com/index.php?s=pageC" title="Cingular">Cingular</A></LI>');
document.write('</UL>');
document.write('</DIV>'); */
}

//****************************************************************************
//Right Menu Include - Careers  [Keith Davis] 01-05-2007
//****************************************************************************

function renderRightMenu3() {


//navid = queryString('pid').toString();

// End Quick Links Section //
//document.write('<DIV CLASS="section">\r');
//document.write('<H3>AT&amp;T Quick Links</H3>\r');
//document.write('<UL CLASS="navlist">\r');

//First Bullet//
//if (navid=="0"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="#" onClick="JobLogin ()" TITLE="Login">Login</A></LI>\r');
//
////Second Bullet//
//if (navid=="0"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="#" onClick="NewAccount ()" TITLE="Create a New Account">Create a New Account</A></LI>\r');

//Spacer//
//document.write('<LI></LI>');

//third Bullet//
//if (navid=="27"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=24" TITLE="Professional - Management Jobs">Professional/Management Jobs</A></LI>\r');

//Fourth Bullet//
//if (navid=="15"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=16" TITLE="Occupational/Non-management Jobs">Occupational/Non-management Jobs</A></LI>\r');


//Sixth Bullet//
//if (navid=="1"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=1" TITLE="Careers Home">Careers Home</A></LI>\r');

//spacer
//document.write('<LI>&nbsp;</LI>\r');

//Sixth Bullet//
//if (navid=="9094"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=9094" TITLE="AT&amp;T Advertising and Publishing">AT&amp;T Advertising and Publishing </A></LI>\r');

//Fifth Bullet//
//if (navid=="7514"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=7514" TITLE="AT&amp;T Government Solutions Center">AT&amp;T Government Solutions Center</A></LI>\r');

//Sixth Bullet//
//if (navid=="10632"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=10632">AT&amp;T Occupational and Hourly</A></LI>\r');

//Sixth Bullet//
//if (navid=="10633"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=10633">AT&amp;T Professional and Management </A></LI>\r');

//Sixth Bullet//
//if (navid=="0"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="http://www.wireless.att.com/about/careers/index.jsp">Wireless Division of AT&amp;T</A></LI>\r');

//spacer
//document.write('<LI>&nbsp;</LI>\r');

//Sixth Bullet//
//if (navid=="7738"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/corporate-citizenship?pid=7744">Strengthening Communities</A></LI>\r');

//Fifth Bullet//
//if (navid=="5"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=5" TITLE="Benefits">Benefits and Locations</A></LI>\r');

//Fifth Bullet//
//if (navid=="9911"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=9911" TITLE="Government Compliance Posters">Government Compliance Posters</A></LI>\r');

//Sixth Bullet//

//if (navid=="27"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=27" TITLE="Attend a Recruiting Event">Attend a Recruiting Event</A></LI>\r');
// document.write('<LI>\r');
//document.write('<A HREF="http://www.bellsouth.com/employment/Military/MilitaryRelations.htm" TITLE="Military Relations">Military Relations</A></LI>\r');
//document.write('</UL>\r');
//document.write('</DIV>\r');

// End Quick Links Section //

//document.write('<DIV CLASS="section">\r');
//document.write('<H3>College Recruiting</H3>\r');
//document.write('<UL CLASS="navlist">\r');

//Zeroth Bullet//
//if (navid=="10780"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=10780" TITLE="2008 Sales Internship Program">2008 Sales Internship Program</A></LI>\r');

//First Bullet//
//if (navid=="6503"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=6503" TITLE="General Internship Program">General Internship Program</A></LI>\r');

//Second Bullet//
//if (navid=="11181"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=11181" TITLE="Retail Management Development Program">Retail Management Development Program</A></LI>\r');

//Third Bullet//
//if (navid=="12"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=12" TITLE="Leadership Development Program">Leadership Development Program</A></LI>\r');

//Fourth Bullet//
//if (navid=="28"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=28" TITLE="LDP Internship Program">LDP Internship Program</A></LI>\r');

//Fifth Bullet//
//if (navid=="8464"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="http://www.corp.att.com/flp/" TITLE="Financial Leadership Program">Financial Leadership Program</A></LI>\r');

//Sixth Bullet//
//if (navid=="8470"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=8470" TITLE="Emerging Sales Professionals Program">Emerging Sales Professionals Program</A></LI>\r');

//Seventh Bullet//
//if (navid=="32"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=32" TITLE="IT MATREX Program">IT MATREX Program</A></LI>\r');

//Eighth Bullet//
//if (navid=="33"){document.write('<LI class="blue-arrow">\r');}
//else {document.write('<LI>\r');}
//document.write('<A HREF="/gen/careers?pid=33" TITLE="Careers in Your Major">Careers in Your Major</A></LI>\r');
//document.write('</UL>\r');
//document.write('</DIV>\r');
}



//***************************************************************************************
//**** External Popup links for Careers renderRightMenu3() Above [Keith Davis] 01-05-2007
//***************************************************************************************

function NewAccount ()
 {
window.open("https://www.e-access.sbc.com/erecruit/sap/bc/bsp/sap/hrrcf_cand_reg?sap-client=600&BspClient=600&sap-language=EN&BspLanguage=EN&rcfContext=ATT&sap-themeRoot=/sap/public/bc/ur/Design2002/themes/att_theme", "_blank","hotkeys=0,top=0,left=0,toolbar=no,location=0,directories=0,status=no,menubar=no,scrollbars=1,resizable=1,width=1010,height=700");
 }

 function SearchJob ()
 {
window.open("https://www.e-access.sbc.com/erecruit/sap/bc/bsp/sap/hrrcf_unrg_srch?sap-client=600&BspClient=600&sap-language=EN&BspLanguage=EN&rcfSpId=0004&rcfContext=ATT&sap-themeRoot=/sap/public/bc/ur/Design2002/themes/att_theme","_blank","hotkeys=0,top=0,left=0,toolbar=no,location=0,directories=0,status=no,menubar=no,scrollbars=1,resizable=1,width=1010,height=700");
 }

 function JobLogin ()
 {
window.open("https://www.e-access.sbc.com/erecruit/sap/bc/bsp/sap/hrrcf_start_ext/application.do?sap-client=600&BspClient=600&sap-language=EN&BspLanguage=EN&rcfSpId=0002&rcfContext=ATT&sap-themeRoot=/sap/public/bc/ur/Design2002/themes/att_theme","_blank","hotkeys=0,top=0,left=0,toolbar=no,location=0,directories=0,status=no,menubar=no,scrollbars=1,resizable=1,width=1010,height=700");
 }

//****************************************************************************
//Right Menu Include - Careers  [Keith Davis] 01-05-2007   END
//****************************************************************************
//*************************************************************
//**** Pre-existing Function
//*************************************************************

function ToggleAllNews()
{
    var elemAllNews = document.getElementById("allNews");
    var elemView = document.getElementById("viewToggle");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = "Hide additional news releases";
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = "View additional news releases";
    }
}

function ToggleAllNewsEdu()
{
    var elemAllNews = document.getElementById("allNewsEdu");
    var elemView = document.getElementById("viewToggleEdu");

    if (elemAllNews.style.display == "none") {
        elemAllNews.style.display = "";
        elemView.innerHTML = "Hide old Education news releases";
    }
    else {
        elemAllNews.style.display = "none";
        elemView.innerHTML = "View all Education news releases";
    }
}


//****************************************************************************
//Common Functions - Active Arrow Menu  [Kevin O'Reilly] 01-29-2007
//****************************************************************************

function PageQuery(q) {
   if(q.length > 1) this.q = q.substring(1, q.length);
   else this.q = null;
   this.keyValuePairs = new Array();
   if(q) {
      for(var i=0; i < this.q.split("&").length; i++) {
         this.keyValuePairs[i] = this.q.split("&")[i];
      }
   }
   this.getKeyValuePairs = function() { return this.keyValuePairs; }
   this.getValue = function(s) {
      for(var j=0; j < this.keyValuePairs.length; j++) {
         if(this.keyValuePairs[j].split("=")[0] == s)
         return this.keyValuePairs[j].split("=")[1];
      }
      return false;
   }



   this.getParameters = function() {
      var a = new Array(this.getLength());
      for(var j=0; j < this.keyValuePairs.length; j++) {
         a[j] = this.keyValuePairs[j].split("=")[0];
      }
      return a;
   }
   this.getLength = function() { return this.keyValuePairs.length; }
}

function queryString(key){
   var page = new PageQuery(window.location.search);
   return unescape(page.getValue(key));
}


//****************************************************************************
//Right Menu Include - Corporate Citizenship  [Kevin O'Reilly] 01-29-2007
//****************************************************************************

function renderRightMenu4() {
    pageId = queryString('pid').toString();

    var navHTML      = '<div style="border:1px solid #fff; background:url(/Common/indc/images/tall_mod_gradientSlice.gif) 0 100% repeat-x transparent; padding:12px; min-height:60px; height:auto; border-color:rgb(204, 204, 204); margin-bottom:12px;">\n';
    navHTML         += '  <h3 style="padding:0; background:none; font-size:1.6em; color:#FF7200; margin:0 0 6px 0; font-weight:bold;" title="Reports">Reports</h3>\n';
    navHTML         += '  <p style="padding:0; margin:0 0 6px 0;">Download previous Citizenship and Sustainability reports.</p>\n';
    navHTML         += '  <ul>\n';
    navHTML         += '    <li style="background-color:transparent; background-image:url(/Common/about_us/images/landing_pages/icn_arrow_blue.gif); background-repeat:no-repeat; background-attachment:scroll; background-x-position:left; background-y-position:center; margin-bottom:10px; margin-left:3px; padding-left:20px;"><a href="/gen/corporate-citizenship?pid=12316" title="2007/2008 report">2007/2008 report</a></li>\n';
    navHTML         += '    <li style="background-color:transparent; background-image:url(/Common/about_us/images/landing_pages/icn_arrow_blue.gif); background-repeat:no-repeat; background-attachment:scroll; background-x-position:left; background-y-position:center; margin-bottom:10px; margin-left:3px; padding-left:20px;"><a href="/gen/corporate-citizenship?pid=10824" title="2007 brochure">2007 brochure</a></li>\n';
    navHTML         += '    <li style="background-color:transparent; background-image:url(/Common/about_us/images/landing_pages/icn_arrow_blue.gif); background-repeat:no-repeat; background-attachment:scroll; background-x-position:left; background-y-position:center; margin-bottom:10px; margin-left:3px; padding-left:20px;"><a href="/Common/files/pdf/330938_ATTcsr_0623.pdf" title="2006 report">2006 report</a></li>\n';
    navHTML         += '  </ul>\n';
    navHTML         += '</div>\n';

    navHTML         += '<H3>Citizenship and Sustainability</H3>\n';
    navHTML         += '<UL CLASS="navlist">\n';
    navHTML         += '  <LI'; if(pageId == 7735) { navHTML += ' class="blue-arrow" '; } navHTML += '><A HREF="/gen/landing-pages?pid=7735" TITLE="Citizenship and Sustainability Home">Home</A></LI>\n';
    navHTML         += '  <LI'; if(pageId == 12307) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Strengthening Communities" HREF="/gen/corporate-citizenship?pid=12307">Strengthening Communities</A>\n';
    if(pageId == 12307 || pageId == 7736 || pageId == 11546 || pageId == 11547 || pageId == 11548 ||  pageId == 11559 || pageId == 11520 || pageId == 7736 || pageId == 10582 || pageId == 7737 || pageId == 7930)
    {
        navHTML     += '    <UL>\n';
        navHTML     += '      <LI'; if(pageId == 7736) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Giving Back" HREF="/gen/corporate-citizenship?pid=7736">Giving Back</A>\n';
        if(pageId == 11546 || pageId == 11547 || pageId == 11548 ||  pageId == 11559 || pageId == 11520 || pageId == 7736 || pageId == 10582)
        {
            navHTML += '        <UL>\n';
            navHTML += '          <LI'; if(pageId == 11546 || pageId == 11547 || pageId == 11548 || pageId == 11559) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="AT&amp;T Aspire" HREF="/gen/corporate-citizenship?pid=11546">AT&amp;T Aspire</A></LI>\n';
            navHTML += '          <LI><A HREF="/Common/merger/files/pdf/Schools_Front_Lines.pdf" TITLE="On the Front Lines of Schools" TARGET="_blank"><EM>On the Front Lines of Schools</EM></A></LI>\n';
            navHTML += '          <LI'; if(pageId == 11520) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="AT&amp;T High School Success Special Grants Program" HREF="/gen/corporate-citizenship?pid=11520">AT&amp;T High School Success Special Grants Program</A></LI>\n';
            navHTML += '        </UL>\n';
        }
        navHTML     += '      </LI>\n';
        navHTML     += '      <LI'; if(pageId == 7737) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Volunteerism" HREF="/gen/corporate-citizenship?pid=7737">Volunteerism</A></LI>\n';
        navHTML     += '      <LI'; if(pageId == 7930) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Supporting our Troops" HREF="/gen/press-room?pid=7930">Supporting our Troops</A></LI>\n';
        navHTML     += '    </UL>\n';
    }
    navHTML         += '  </LI>\n';



    navHTML         += '  <LI'; if(pageId == 7738) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Investing in People" HREF="/gen/corporate-citizenship?pid=7738">Investing in People</A></LI>\n';
    if(pageId == 7738 || pageId == 7752 || pageId == 7753 || pageId == 11865 || pageId == 7744 || pageId == 7755)
    {
        navHTML    += '     <UL>\n';
        navHTML    += '       <LI'; if(pageId == 7752) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Workforce Inclusion" HREF="/gen/corporate-citizenship?pid=7752">Workforce Inclusion</A></LI>\n';
        navHTML    += '       <LI'; if(pageId == 7753) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Supplier Diversity" HREF="/gen/corporate-citizenship?pid=7753">Supplier Diversity</A></LI>\n';
        navHTML    += '       <UL><LI'; if(pageId == 11865) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Supplier Profiles" HREF="/gen/corporate-citizenship?pid=11865">Supplier Profiles</A></LI></UL>\n';
        navHTML    += '       <LI'; if(pageId == 7744) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Community Impact" HREF="/gen/corporate-citizenship?pid=7744">Community Impact</A></LI>\n';
        navHTML    += '       <LI'; if(pageId == 7755) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Multicultural Outreach" HREF="/gen/corporate-citizenship?pid=7755">Multicultural Outreach</A></LI>\n';
        navHTML    += '     </UL>\n';
    }
    navHTML        += '  </LI>\n';
    navHTML        += '  <LI'; if(pageId == 8510) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Leading With Integrity" HREF="/gen/corporate-citizenship?pid=8510">Leading With Integrity</A></LI>\n';  
    navHTML        += '  <LI'; if(pageId == 8506) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Minimizing Our Environmental Impact" HREF="/gen/corporate-citizenship?pid=8506">Minimizing Our Environmental Impact</A></LI>\n';
    navHTML        += '  <LI'; if(pageId == 12312) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Connecting People and Business" HREF="/gen/corporate-citizenship?pid=12312">Connecting People and Business</A></LI>\n';  
    navHTML        += '  <LI'; if(pageId == 8511) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Leading Innovation and Technology" HREF="/gen/corporate-citizenship?pid=8511">Leading Innovation and Technology</A></LI>\n';
    navHTML        += '  <LI'; if(pageId == 6425) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Awards and Honors" HREF="/gen/landing-pages?pid=6425">Awards and Honors</A>\n';
    if(pageId == 6425 || pageId == 6426 || pageId == 6428 || pageId == 6427 || pageId == 6422 )
    {
      navHTML      += '    <UL>\n';
      navHTML      += '      <LI'; if(pageId == 6426) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Leadership, Reputation and Giving" HREF="/gen/corporate-citizenship?pid=6426">Leadership, Reputation and Giving</A></LI>\n';
      navHTML      += '      <LI'; if(pageId == 6428) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Workforce Inclusion" HREF="/gen/corporate-citizenship?pid=6428">Workforce Inclusion</A></LI>\n';
      navHTML      += '      <LI'; if(pageId == 6427) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Supplier Diversity" HREF="/gen/corporate-citizenship?pid=6427">Supplier Diversity</A></LI>\n';
      navHTML      += '      <LI'; if(pageId == 6422) { navHTML += ' class="blue-arrow" '; } navHTML += '><A TITLE="Service and Innovations" HREF="/gen/corporate-citizenship?pid=6422">Service and Innovations</A></LI>\n';
      navHTML      += '    </UL>\n';
    }
    navHTML        += '  </LI>\n';
    navHTML        += '</UL>\n';

    navHTML        += '<DIV CLASS="section" STYLE="display:none;">\n';
    navHTML        += '  <H3>2006 Social Responsibility Report</H3>\n';
    navHTML        += '  <UL class="icons">\n';
    navHTML        += '    <LI class="icn-pdf"><A HREF="/Common/files/pdf/330938_ATTcsr_0623.pdf" TITLE="AT&amp;T&#39;s commitment to corporate citizenship is highlighted in its 2006 Social Responsibility Report"  onClick="urchinTracker(\'/outgoing/CSR_report_pdf_' + pageId  + '\');">AT&amp;T&#39;s commitment to corporate citizenship is highlighted in its 2006 Social Responsibility Report.</A></LI>\n';
    navHTML        += '  </UL>\n';
    navHTML        += '</DIV>\n';

    document.write(navHTML);
}


//*****************************************************************************************
//Right Menu Include - IR Quarterly Earnings pid 268,282,290,262  [Shelley Kennon] 04-20-2007
//*****************************************************************************************



function renderRightMenu5() {
   pageId = queryString('pid').toString();

var navHTML    = '<DIV CLASS="section">\n<UL CLASS="navlist">\n';
navHTML       += '<H3>Related Links</H3>';
navHTML       += '<LI'; if(pageId == 268 ) { navHTML += ' class="blue-arrow" ';}
navHTML       += '><A HREF="/gen/investor-relations?pid=269" TITLE="1Q 2009 Earnings" onClick="javascript:urchinTracker(\'/outgoing/ir_268\');">1Q 2009 Earnings</A></LI>\n';
navHTML       += '<LI'; if(pageId == 282 ) { navHTML += ' class="blue-arrow" ';}
navHTML       += '><A HREF="/gen/investor-relations?pid=282" TITLE="2Q 2009 Earnings" onClick="javascript:urchinTracker(\'/outgoing/ir_282\');">2Q 2009 Earnings</A></LI>\n';
navHTML       += '<LI'; if(pageId == 290 ) { navHTML += ' class="blue-arrow" ';}
navHTML       += '><A HREF="/gen/investor-relations?pid=290" TITLE="3Q 2009 Earnings" onClick="javascript:urchinTracker(\'/outgoing/ir_290\');">3Q 2009 Earnings</A></LI>\n';
navHTML       += '<LI'; if(pageId == 262 ) { navHTML += ' class="blue-arrow" ';}
navHTML       += '><A HREF="/gen/investor-relations?pid=262" TITLE="4Q 2008 Earnings" onClick="javascript:urchinTracker(\'/outgoing/ir_262\');">4Q 2008 Earnings</A></LI>\n';
navHTML       += '</UL>\n</DIV>\n';
document.write(navHTML);
}

//****************************************************************************
//Right Menu Include - Customer Education [Shelley Kennon] 04-04-07
//****************************************************************************
var navULs=['1', '2', '3', '4'];

function displayNavUL(navULId)
{
var oneNavUL = document.getElementById(navULId);

for (var di=0;di<navULs.length;di++)
  {
  if (oneNavUL != document.getElementById(navULs[di]))
    {
    document.getElementById(navULs[di]).style.display='none';
    }
  }

if (oneNavUL.style.display=='block')
  {
  oneNavUL.style.display = 'none';
  }
else
  {
  oneNavUL.style.display = 'block';
  }
}



function renderRightMenu6() {
pageId = queryString('pid').toString();
var navHTML = '<H3>Protecting Our Customers</H3>';
navHTML += '<UL class="icon-nav">';
//Bullet//
navHTML       += '<LI';
if(pageId == 6456) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/landing-pages?pid=6456" title="Customer Education Home">Protecting Our Customers Home</A></LI>';
navHTML += '</UL>';
navHTML += '<DIV CLASS="section">';
navHTML += '<img src="/Common/merger/images/news_room/icon-talk-smart.gif" alt="Talk Smart" width="89" height="21" onclick="displayNavUL(1);" style="cursor: hand">';
if(pageId == 6049 || pageId == 6083 || pageId == 6045 || pageId == 6047 || pageId == 8244 || pageId == 8949  || pageId == 8949) {
navHTML += '<UL class="icon-nav" style="display:block"><span id="1"></span>';}
else {
navHTML += '<UL class="icon-nav" id="1" style="display:none;">';}
//Bullet//
navHTML       += '<LI';
if(pageId == 6049) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=6049" TITLE="Slamming">Slamming</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 6083) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=6083" TITLE="Cramming">Cramming</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 6045) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=6045" TITLE="809 Area Code Scam">809 Area Code Scam</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 8949) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/sites/smartlimits?pid=8949#voice" TITLE="Set Talk Smart Limits">Set Talk Smart Limits</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 6047) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=6047" TITLE="Tips to Prevent Identity Theft">Tips to Prevent Identity Theft</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 8244) {
navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=8244" TITLE="Tips to Safeguard Personal Information">Tips to Safeguard Personal Information</A></LI>';
navHTML += '</UL>';
navHTML += '</DIV>\n';
navHTML += '<DIV CLASS="section">';
navHTML += '<img src="/Common/merger/images/news_room/icon-surf-smart.gif" alt="Surf Smart" width="92" height="16" onclick="displayNavUL(2)" style="cursor: hand">';
if(pageId == 1409 || pageId == 6455 || pageId == 1401 || pageId == 6048 || pageId == 5527 || pageId == 1395 || pageId == 9123 || pageId == 6449 || pageId == 1391 || pageId == 8133 || pageId == 8942 || pageId == 1401 || pageId == 1782 || pageId == 10798) {
navHTML += '<UL class="icon-nav" style="display:block"><span id="2"></span>';}
else {
navHTML += '<UL class="icon-nav" id="2" style="display:none;">';
}
//Bullet//
navHTML += '<LI';
if(pageId == 1409) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=1409" TITLE="Computer Viruses and Worms">Computer Viruses and Worms</A></LI>';
//Bullet//
navHTML += '<LI';
if(pageId == 6455) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=6455" TITLE="Spyware and Adware">Spyware and Adware</A></LI>';
//Bullet//
navHTML += '<LI';
if(pageId == 1401) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=1401" TITLE="Spam">Spam</A></LI>';
//Bullet//
navHTML += '<LI';
if(pageId == 6048) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=6048" TITLE="Identity Theft: Spoofing or Phishing">Identity Theft: Spoofing or Phishing</A></LI>';
//Bullet//
navHTML += '<LI';
if(pageId == 1395) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=1395" TITLE="Protecting Your Personal Information Online">Protecting Your Personal Information Online</A></LI>';
//Bullet//
navHTML += '<LI><A HREF="/gen/sites/smartlimits?pid=8942" TITLE="Set Surf Smart Limits">Set Surf Smart Limits</A></LI>';
//Bullet//
navHTML += '<LI';
if(pageId == 9123) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=9123" TITLE="Online Safety Initiatives">Online Safety Initiatives</A></LI>';
//Bullet//
navHTML += '<LI><A HREF="http://att.centralcast.net/att_safety/Phishing/" TITLE="Online Phishing Tutorial">Online Phishing Tutorial</A></LI>';
//Bullet//
navHTML += '<LI';
if(pageId == 1782) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=1782" TITLE="AT&amp;T Wi-Fi Security Tips">AT&amp;T Wi-Fi Security Tips</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 6449) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=6449" TITLE="Internet Safety 101 for Parents">Internet Safety 101 for Parents</A></LI>';
//Bullet//
navHTML       += '<LI';
if(pageId == 1391) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/general?pid=1391" TITLE="Internet Safety Game for Kids">Internet Safety Game for Kids</A></LI>';
navHTML += '</UL>';
navHTML += '</DIV>\n';
navHTML += '<DIV CLASS="section">';
navHTML += '<img src="/Common/merger/images/news_room/icon-wireless-smart.gif" alt="Wireless Smart" width="117" height="22" onclick="displayNavUL(3)" style="cursor: hand">';
if(pageId == 8938) {
navHTML += '<UL class="icon-nav" style="display:block"><span id="3"></span>';}
else {
navHTML += '<UL class="icon-nav" id="3" style="display:none;">';
}
//Bullet//
navHTML += '<LI><A HREF="http://www.wireless.att.com/learn/articles-resources/be-sensible.jsp#safety" TITLE="Driving Safety">Driving Safety</A></LI>';
//Bullet//
navHTML += '<LI><A HREF="http://www.att.com/gen/press-room?pid=9232" TITLE="Be Sensible Safety Advisors ">Be Sensible Safety Advisors</A></LI>';


//Bullet//
navHTML       += '<LI';
if(pageId == 8938 ) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/sites/smartlimits?pid=8938" TITLE="Set Wireless Smart Limits">Set Wireless Smart Limits</A></LI>';
//Bullet//
navHTML       += '<LI><A HREF="http://www.wireless.att.com/learn/articles-resources/be-sensible.jsp#driving-tips" TITLE="Tips for Teen Drivers">Tips for Teen Drivers </A></LI>';
//Bullet//
navHTML += '<LI><A HREF="http://www.cingular.com/learn/en_US/pdf/txt2connect-tutorial.pdf" TARGET="_blank" TITLE="Text Messaging — A How-To Guide">Text Messaging — A How-To Guide</A></LI>';
navHTML += '</UL>';
navHTML += '</DIV>\n';
navHTML += '<DIV CLASS="section">';
    navHTML += '<img src="/Common/merger/images/news_room/icon-watch-smart.gif" alt="Watch Smart" width="105" height="23" onclick="displayNavUL(4)" style="cursor: hand">';
if(pageId == 9227 || pageId == 9228 || pageId == 9229 || pageId == 9230 ) {
navHTML += '<UL class="icon-nav" style="display:block"><span id="4"></span>';}
else {
navHTML += '<UL class="icon-nav" id="4" style="display:none;">';
}
//Bullet//
navHTML       += '<LI';
if(pageId == 9227 ) { navHTML += ' class="blue-arrow" ';}
navHTML += '><A HREF="/gen/press-room?pid=9227" TITLE="AT&amp;T U-Verse TV">AT&amp;T U-Verse<SUP>SM</SUP> TV</A></LI>';
//Bullet//
navHTML       += '<LI><A HREF="/gen/sites/smartlimits?pid=8949#tv" TITLE="Set Watch Smart Limits">Set Watch Smart Limits</A></LI>';
navHTML += '</UL>';
navHTML += '</DIV>';
navHTML += '\n';
document.write(navHTML);
}


function renderRightMenu7() {
    
pageId = queryString('pid').toString();
var navHTML     = '<H3>Quick Links</H3>\n';
navHTML        += '<UL CLASS="navlist">\n';
//Bullet//
navHTML        += '<LI'; if(pageId == 9246 ) { navHTML += ' class="blue-arrow" ';}
navHTML        += '><A HREF="/gen/careers?pid=9246" TITLE="Find a Job">Find a Job</A></LI>\n';
//Bullet//
navHTML        += '<LI'; if(pageId == 9249 ) { navHTML += ' class="blue-arrow" ';}
navHTML        += '><A HREF="/gen/careers?pid=9249" TITLE="Multi-Lingual Jobs">Multi-Lingual Jobs</LI>\n';
//Bullet//
navHTML        += '<LI'; if(pageId == 9248 ) { navHTML += ' class="blue-arrow" ';}
navHTML        += '><A HREF="/gen/careers?pid=9248" TITLE="Test Guides">Test Guides</A></LI>\n';
//Bullet//
navHTML        += '<LI'; if(pageId == 9245 ) { navHTML += ' class="blue-arrow" ';}
navHTML        += '><A HREF="/gen/careers?pid=9245" TITLE="BellSouth Study Test Guides">BellSouth Study Test Guides</A></LI>\n';
//Bullet//
navHTML        += '<LI'; if(pageId == 9247 ) { navHTML += ' class="blue-arrow" ';}
navHTML        += '><A HREF="/gen/careers?pid=9247" TITLE="Frequently Asked Questions">Frequently Asked Questions</A></LI>\n';
navHTML        += '</UL>\n';
document.write(navHTML);
}

 function renderRightMenu9() {
 

document.write('<DIV CLASS="section">\r');
document.write('<H3>Top Recognitions</H3>\r');
document.write('<DIV ALIGN="center"><IMG SRC="/Common/merger/images/2009_top50_logo_hr1.jpg" ALT="DiversityInc 2009 Top 50 Companies For Diversity" ALIGN="middle"></DIV>\r');
document.write('<P ALIGN="center">DiversityInc named AT&amp;T as one of the 2009 <A HREF="/gen/press-room?pid=4800&cdvn=news&newsarticleid=26612" TITLE="Top 50 Companies for Diversity" TARGET="_blank">Top 50 Companies for Diversity</A> for the company&#39;s commitment to diversity in the workplace and marketplace. AT&amp;T was also included among the Top 10 Companies for for Recruitment &amp; Retention, Top 10 Companies for African Americans, and Top 10 Companies for LGBT Employees.');
document.write('</P></DIV>');         

document.write('</DIV>\r');
 }
 

function  show3GRegion(divID) {
    if (divID == "west3G") {
        document.getElementById('west3G').style.display = "block";
        document.getElementById('midwest3G').style.display = "none";
        document.getElementById('southwest3G').style.display = "none";
        document.getElementById('east3G').style.display = "none";
        document.getElementById('southeast3G').style.display = "none";
    }
    if (divID == "midwest3G") {
        document.getElementById('west3G').style.display = "none";
        document.getElementById('midwest3G').style.display = "block";
        document.getElementById('southwest3G').style.display = "none";
        document.getElementById('east3G').style.display = "none";
        document.getElementById('southeast3G').style.display = "none";
    }
    if (divID == "southwest3G") {
        document.getElementById('west3G').style.display = "none";
        document.getElementById('midwest3G').style.display = "none";
        document.getElementById('southwest3G').style.display = "block";
        document.getElementById('east3G').style.display = "none";
        document.getElementById('southeast3G').style.display = "none";
    }
    if (divID == "east3G") {
        document.getElementById('west3G').style.display = "none";
        document.getElementById('midwest3G').style.display = "none";
        document.getElementById('southwest3G').style.display = "none";
        document.getElementById('east3G').style.display = "block";
        document.getElementById('southeast3G').style.display = "none";
    }
    if (divID == "southeast3G") {
        document.getElementById('west3G').style.display = "none";
        document.getElementById('midwest3G').style.display = "none";
        document.getElementById('southwest3G').style.display = "none";
        document.getElementById('east3G').style.display = "none";
        document.getElementById('southeast3G').style.display = "block";
    }
    }

// END MERGER.JS // JavaScript Document 