function downloadtime(bytes) {

	var Sec = Math.round(bytes / (56600 / 8));

	document.write("&nbsp;&nbsp;&nbsp;Est. Download Time: @ 56K : ");

	if (Sec < 1) {
		document.write("less than one second.");
		return;
	}			

	if (Sec > 86400) {
		document.write("more than a day.");
		return;
	}

	var TotalHours = Math.floor(Sec / 3600);
	var TotalMin = Math.floor((Sec - (TotalHours * 3600)) / 60);
	var TotalSec = Math.floor(Sec - ((TotalHours * 3600) + (TotalMin * 60)))

	document.write(TotalHours + " Hour(s), " + TotalMin + " Minute(s), and " + TotalSec + " Seconds");

	return;
}
