//  
//
// begin: detect-connection-speed-part2.js
// this goes in the head portion of the page
// Only needed if an alert is to be shown based on teh speed.

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
