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 CONTACT BUTTON
if(sectionid=="contact"){
document.write(button_write('Contacts','NCSContactList.pdf','LeftNavBold'));
}
// END CONTACT SUB BUTTONS
else{
document.write(button_write('Contacts','NCSContactList.pdf','LeftNav'));

}
document.write(divider_write());


// BEGIN PICKUP ENTRY
//document.write(button_write('Current Fuel-Surcharge','http://www.ncss.net/reports/FUEL-SURCHARGE.html','LeftNav'));
//document.write(divider_write());
// END PROOF OF DELIVERY INQUIRY BUTTON


// BEGIN DC LIST
if(sectionid=="dclist"){
document.write(button_write('Distribution Centers','dclist.html','LeftNavBold'));
document.write(divider_write());
}
else{
document.write(button_write('Distribution Centers','dclist.html','LeftNav'));
document.write(divider_write());
}


// BEGIN WALGREENS SUPPLIER NET

document.write(button_write('Walgreens Supplier Net','https://webapp.walgreens.com/VendorPortal/JSP/prototypes/index.html','LeftNav'));
document.write(divider_write());

// BEGIN WALGREENS ASN Questions

document.write(button_write('Walgreens ASN Questions','mailto:ASN.Project@Walgreens.com','LeftNav'));
document.write(divider_write());

// BEGIN WALGREENS EDI Questions
document.write(button_write('Walgreens EDI Questions','mailto:EDI.Support@Walgreens.com','LeftNav'));
document.write(divider_write());

// BEGIN WALGREENS Routing Guide
// document.write(button_write('2010 Walgreens Routing Guide','WalgreensPriorityOneService_email.pdf','LeftNav'));
document.write(button_write('2011 Walgreens Routing Guide','WalgreensPriorityOneService2011.pdf','LeftNav'));
document.write(divider_write());

document.write(button_write('Corporate Environmental Culture','FCG-SFI-FSC_InternalAnnc-FINAL_0110.pdf','LeftNav'));
document.write(divider_write());


document.write(button_write('Login','http://login.ncss.net/login.msw','LeftNav'));
document.write(divider_write());



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
}

