<!--
function capitalizeAll(str1) {
  var str3 = "";
  var str2 = str1.split(" "); // spezzo la stringa secondo le parole
  for (i=0; i<str2.length; i++) {
    str3 += str2[i].substr(0,1).toUpperCase() + str2[i].substr(1) + "";
  }
  return str3;
}

function capitalizeFirst(str1) 
{ 
str1 = str1.substr(0,1).toUpperCase() + str1.substr(1,str1.length-1); 
return str1; 
} 

function apriwin(str,xx,yy,tit,modo) {
if (modo==0) {
	finestra = window.open(str,'casaDoria','scrollbars=no,resizable=no,width=' + xx + ',height=' + yy + ',status=no,location=no,toolbar=no');
} else {
	finestra = window.open(str,'casaDoria','scrollbars=yes,resizable=no,width=' + xx + ',height=' + yy + ',status=no,location=no,toolbar=no');}
finestra.moveTo(0,0);
finestra.focus();
}

function message(errorMsg) 
{
if (errorMsg != ""){
		msg = "____________________________________________________________________\n\n";
		msg += "Attenzione presenza di errori nel form, correggete l'errore e rinviate il form.\n";
		msg += "Attention presence of errors in the form, correct the error and sent back the form.\n";
		msg += "____________________________________________________________________\n\n";
		msg += "Il seguente campo e' stato inserito erroneamente / The following field has been inserted erroneously : \n";
		errorMsg += alert(msg + errorMsg + "\n\n");
		return false;
	} 
return true;
}
//-->
