function mailto(to, subject)
{
	to = to.replace(/#/g, "@");
	to = to.replace(/~/g, ".");
	to = to.replace(/&/g, "");
	to = to.replace(/\*/g, "");
	to = to.replace(/ /g, "");

	if (confirm('Clicka Ok per mandare una mail a ' + to + ''))
	{
		window.location = "mailto:" + to + "?subject=" + subject;
	}
}

function confirmSubmit()
{
	var agree=confirm("Do you really want to delete it?");
  if(agree)
  {
	  return true ;
	}
  else
  {
	  return false ;
	}
}

function check_cap(obj)
{
   if (isNaN(obj.value))
   {
     alert('Per favore inserisci un valore numerico');
     obj.value="";
   }
}
function check(obj)
{
   if (isFinite(obj.value))
   {
     alert('Per favore inserisci un valore alfabetico');
     obj.value="";
   }
}

