function comprueba() {
  var msg="";
  var nif_cl = document.f1.nif_cl.value;
  var passwd_cl = document.f1.passwd_cl.value;

  if( nif_cl == "" ) {
    msg += " - NIF \n";
  }

  if( passwd_cl == "" ) {
    msg += " - Contraseña \n";
  }

  if( msg ) {
	alert( "Te ha faltado introducir:\n" + msg );
	return false;
  }

  msg += "NIF:" + nif_cl + "\n¿Es esto correcto?";
  return confirm( msg );
}

function pop(link){
  PopUpWindow = window.open(link,'','top=0, width=400, height=300, scrollbars=yes,resizable=yes, toolbar=no');
  PopUpWindow.focus();
}
