document.write(menu_top());

// BEGIN HOME BUTTON
if(sectionid=="home"){
document.write(button_write('Home','/index.html','LeftNavBold'));
}
else{
document.write(button_write('Home','/index.html','LeftNav'));
}
document.write(divider_write());
// END HOME BUTTON

// BEGIN MYACCOUNT BUTTON
document.write(button_write('My Account','http://myaccount.daca.net/','LeftNav'));
document.write(divider_write());
// END HOME BUTTON





// BEGIN WEB MAIL BUTTON

document.write(button_write('Web Mail','http://mail.daca.net','LeftNav'));
document.write(divider_write());
// END HOME BUTTON




// BEGIN WIRELESS BUTTON
if(sectionid=="wireless"){
document.write(button_write('Wireless Access','/wireless/index.html','LeftNavBold'));



// BEGIN WIRELESS SUB BUTTONS
if(sectionsubid=="rates"){
document.write(sub_button_write('Rates','/wireless/rates.html','LeftNavSubBold'));
}
else{
document.write(sub_button_write('Rates','/wireless/rates.html','LeftNavSub'));
}

if(sectionsubid=="Coverage"){
document.write(sub_button_write('Coverage','/wireless/coverage.html','LeftNavSubBold'));
}
else{
document.write(sub_button_write('Coverage','/wireless/coverage.html','LeftNavSub'));
}




}

// END WIRELESS SUB BUTTONS

else{
document.write(button_write('Wireless Access','/wireless/index.html','LeftNav'));
}

document.write(divider_write());
// END WIRELESS BUTTON




// BEGIN DIAL UP BUTTON
if(sectionid=="dial"){
document.write(button_write('Dial-Up Access','/dial/index.html','LeftNavBold'));
}
else{
document.write(button_write('Dial-Up Access','/dial/index.html','LeftNav'));
}
document.write(divider_write());
// END DIAL UP BUTTON




// BEGIN NEWS BUTTON
if(sectionid=="news"){
document.write(button_write('News','/news/index.html','LeftNavBold'));
}
else{
document.write(button_write('News','/news/index.html','LeftNav'));
}
document.write(divider_write());
// END NEWS BUTTON







document.write(menu_bottom());




// BEGIN MENU DRAW FUNCTIONS

function menu_top(){
	str='<TABLE CELLPADDING="0" CELLSPACING="0" BORDER="0" WIDTH="160">\r'
	str+='<TR>\r'
	str+='<TD WIDTH="160"><IMG SRC="/images/common/spacer.gif" ALT="" WIDTH="147" HEIGHT="5" BORDER="0"></TD>\r'
	str+='</TR>\r'
	return str
}

function button_write(text,lnk,acl){
	str='<TR>\r'
	str+='<TD WIDTH="160"><DIV CLASS="'+acl+'"><A HREF="'+lnk+'">'+text+'</A></DIV></TD>\r'
	str+='</TR>\r'
	return str
}

function sub_button_write(text,lnk,acl){
	str='<TR>\r'
	str+='<TD WIDTH="160"><DIV CLASS="'+acl+'"><A HREF="'+lnk+'">'+text+'</A></DIV></TD>\r'
	str+='</TR>\r'
	return str
}

function divider_write(){
	str='<TR>\r'
	str+='<TD WIDTH="160"><IMG SRC="/images/common/nav_divider.gif" ALT="" WIDTH="160" HEIGHT="1" BORDER="0"></TD>\r'
	str+='</TR>\r'
	return str
}

function menu_bottom(){
	str='</TABLE>\r'
	return str
}
