// begin: detect-connection-speed-part2.js
// this goes in the head portion of the page

function showSpeed() {
	alert('The Connection Speed detected  was: ' + connectionSpeed + ' kbps.\n \nBased upon this information your connection device is most likely a ' + connectionType(connectionSpeed) + '.');
	return;
}
// end of : detect-connection-speed-part2.js
