function isnum(obj) {
if (isNaN(obj.value) || parseInt(obj.value)<0 || parseInt(obj.value) > 999999999)
{
alert('Nel campo prezzo e superficie immettere solo numeri!');
obj.value="";
obj.focus();
}
}
function mostra(id){
if (document.getElementById){
if(document.getElementById(id).style.display == 'none'){
document.getElementById(id).style.display = 'block';
}
}
} 
function nascondi(id){
if (document.getElementById){
document.getElementById(id).style.display = 'none';
}
} 