function obtener_informacion_proveedor()
 {
	var x = $('#nombre_proveedor').attr("value");
	valores = x.split('_');
	x = $("#contacto");
	x.html(valores[1]);
	x = $("#telefono");
	x.html(valores[2]); 
 }
 



/*function obtener_informacion_proveedor()
 {
	var x = $('#nombre_proveedor').attr("value");
	$.ajax({
           async:true,
           type: "GET",
           dataType: "html",
           contentType: "application/x-www-form-urlencoded",
           url:"index.php",
           data:'proc=22',
          // beforeSend:inicioEnvio,
           success:llegadaDatos,
           timeout:4000
         }); 
         return false;
	  
 }
 
 function inicioEnvio1()
	{	 
	  var x=$("#informacion_proveedor");
	  x.css("text-align","center");
	  x.html('<img src="images/loading.gif">');
	}
	
function llegadaDatos(datos)
	{
	  var x;
	  x = $("#informacion_proveedor");
	  x.html(datos);
    } */