function enterServer_62_75_252_144_8767() {
	enterSubChannel_62_75_252_144_8767(null, false, null);
}
function enterChannel_62_75_252_144_8767(channelName, channelPassworded) {
	enterSubChannel_62_75_252_144_8767(channelName, channelPassworded, null);
}
function enterSubChannel_62_75_252_144_8767(channelName, channelPassworded, subChannelName) {
	var serveraddress = 'teamspeak://62.75.252.144:8767';
	var nickname=window.prompt('Enter your nickname');
	if (nickname == null) {
		return;
	} else if (nickname == "") {
		window.alert('Could not enter the teamspeak server because you did not enter your nickname');
		return;
	}
	serveraddress = serveraddress + "/nickname=" + nickname;
	var password=window.prompt('Enter the teamspeak server password for XE TeamSpeak Server');
	if (password == null) {
		return;
	} else if (password == "") {
		window.alert('Could not enter the teamspeak server because you did not enter a server password');
		return;
	}
	serveraddress = serveraddress + "?password=" + password;
	if (channelName != null) { serveraddress = serveraddress + "?channel=" + channelName; }
	if (channelPassworded) {
		var channelpassword=window.prompt('Enter the channel password for channel ' + channelName);
		if (channelpassword == null) {
			return;
		} else if (channelpassword == "") {
			window.alert('Could not enter the teamspeak server because you did not enter a channel password');
			return;
		}
		serveraddress = serveraddress + "?channelpassword=" + channelpassword;
	}
	if (subChannelName != null) { serveraddress = serveraddress + "?subchannel=" + subChannelName; }
	window.location=serveraddress;
}
