// Verificar Login
function verificarLogin(){
var fallo= "";
valor=0;
var correu = document.forms.editar_reg.correu_reg.value.replace(/^\s+|\s+$/g,"");
var pass = document.forms.editar_reg.pass_reg.value.replace(/^\s+|\s+$/g,"");
if (pass=="")
{
fallo = "Escribe un password.\n";
valor=1;
}
if (correu==""){
fallo = "Escribe un nombre.\n";
valor=1;
}
if (valor>0)
{
alert (fallo);	
}
else
{
document.forms.editar_reg.submit();
}}

// Verificar Upload
function verificarUpload(){
var fallo= "";
valor=0;
var titol = document.forms.subir_documentos.titol_doc.value.replace(/^\s+|\s+$/g,"");
var imatge = document.forms.subir_documentos.imatge_doc.value.replace(/^\s+|\s+$/g,"");
if (imatge=="")
{
fallo = "Selecciona un documento.\n";
valor=1;
}
if (titol==""){
fallo = "Escribe un título o pequeña descripción.\n";
valor=1;
}
if (valor>0)
{
alert (fallo);	
}
else
{
document.forms.subir_documentos.submit();
}} 
