// JavaScript Document
function ConfirmChoiceIta() 
{ 
answer = confirm("Confermi l’eliminazione della notizia?")

if (answer !=0) 
{ 
    //alert('si');
  	return (true);
	
} 
else 
{ 
	//alert('no');
  	return (false);
} 
}

function ConfirmChoiceEng() 
{ 
answer = confirm("Confirm deletion of this new?")

if (answer !=0) 
{ 
    //alert('si');
  	return (true);
	
} 
else 
{ 
	//alert('no');
  	return (false);
} 
}

function ConfirmChoiceDeu() 
{ 
answer = confirm("Bevestigt u de schrapping van nieuw dit?")

if (answer !=0) 
{ 
    //alert('si');
  	return (true);
	
} 
else 
{ 
	//alert('no');
  	return (false);
} 
}

function ConfirmChoiceFra() 
{ 
answer = confirm("Confirmez-vous la suppression de ceci nouveau ?")

if (answer !=0) 
{ 
    //alert('si');
  	return (true);
	
} 
else 
{ 
	//alert('no');
  	return (false);
} 
}

function ConfirmChoiceEsp() 
{ 
answer = confirm("żUsted confirma la canceladura de esto nuevo?")

if (answer !=0) 
{ 
    //alert('si');
  	return (true);
	
} 
else 
{ 
	//alert('no');
  	return (false);
} 
}