function highlightRightNavItem() {
	var leftNavItem = document.getElementById(networxPageName);
	if (leftNavItem != 'undefined')
		leftNavItem.className = "on";
		
}

// Email URL to a friend script //
function mailpage()
{
mail_str = "mailto:?subject=Check out the page: " + document.title;
mail_str += "&body=I thought you might be interested in this page from Qwest Networx Solutions. ";
mail_str += "You can view it at, " + location.href; 
location.href = mail_str;
}
// End Email URL to a friend script //