    var popup_status = 0;
    
    function error(error_msg) { 
    if(popup_status == 0) {
      var windowwidth = document.documentElement.clientWidth;
      var popupwidth = $('#pop_error').width();
      var left_pos = (1000-popupwidth/2)+1;
      $("#pop_error").css({
        "position": "absolute",
        "z-index": "99",
        "top": "35px",
        "left": left_pos
      });
      
      $('#pop_error_txt').append(error_msg);
      $('#pop_error').fadeIn("slow");
      popup_status = 1;
    } else {
      $('#pop_login').fadeOut("slow");
      $('#pop_registro').fadeOut("slow");
      $('#pop_reg_ok').fadeOut("slow");
      $('#pop_reg_val').fadeOut("slow");
      $('#pop_contacto').fadeOut("slow");
      $('#pop_error').fadeOut("slow");  
	  $('#pop_wsf').fadeOut("slow");     
      popup_status = 0; 
    }
  }