// formulari ofertes
function verificarOfertes(){
var valor=0;
var fallo= "Et falta indicar:\n";
if (document.forms.form2.nom.value=="")
{
valor=1;
fallo += "El nom.\n";
}
if (document.forms.form2.correu.value=="")
{
valor=1;
fallo += "El email.\n";
}
if (document.forms.form2.comentaris.value=="")
{
valor=1;
fallo += "Els comentaris.\n";
}
if (valor>0)
{
alert (fallo);
}
else
{
document.forms.form2.submit();
}}
