function calcula() 
{	
with(document.tabela)
{
valor = peso.value / (altura1.value * altura2.value);
if (valor != Infinity)
{
imc.value = valor;
}
}    
}
function replace(msg) 
{	
document.tabela.peso.value = msg.replace(",", ".");
}
function replace1(msg) 
{	
document.tabela.altura1.value = msg.replace(",", ".");
document.tabela.altura2.value = document.tabela.altura1.value;
}
function replace2(msg) 
{
document.tabela.altura2.value = msg.replace(",", ".");
document.tabela.altura1.value = document.tabela.altura2.value;
}