/*
	This is for the "Translate" bucket at the bottom of the left nav of wireless home.
*/
function translate(lang) {

var ie = "Microsoft Internet Explorer";
var nn = "Netscape";
var browser = navigator.appName;

if (lang == "") { return; }
	if (browser == ie) {
		site = "http://wireless.fcc.gov/cgi-bin/wtbbye.pl?http://babel.altavista.com/tr?urltext=http://wireless.fcc.gov/&lin=en&lout=" + lang;
	} else {
		site = "http://wireless.fcc.gov/cgi-bin/wtbbye.pl?http://babel.altavista.com/?urltext=http://wireless.fcc.gov/&lin=en&lout=" + lang;
	}
	top.location=site;
}