<!--
// convert from bits to other broadband datarates

function nofocus()

{

document.convert.InUnit.focus()

}

var bValue = 1;

var byValue = 8;

var kbValue = 8192;

var mbValue = 1048576;

var gbValue = 1073741824;

function toCM()

{

var i = document.convert.unit.selectedIndex

var thisUnit = document.convert.unit.options[i].value

if (thisUnit == "b")

 {

document.convert.b.value = document.convert.InUnit.value

 }

else if(thisUnit == "kb")

 {

document.convert.b.value = document.convert.InUnit.value * kbValue

 }

else if(thisUnit == "mb" )

 {

document.convert.b.value = document.convert.InUnit.value * mbValue

 }

else if(thisUnit == "gb" )

 {

document.convert.b.value = document.convert.InUnit.value * gbValue

 }

else if(thisUnit == "by" )

 {

document.convert.b.value = document.convert.InUnit.value * byValue

 }

toAll()

}

function toAll()

{

var m = document.convert.b.value

document.convert.kb.value = m / kbValue

document.convert.mb.value = m / mbValue

document.convert.gb.value = m / gbValue

document.convert.by.value = m / byValue

}
//-->