var shop = function(){};

shop.prototype.FiltroPorEmpresa=function(){
	var col = document.getElementById('Empresa').value;
	window.location="?Empresa="+col;
}

shop.prototype.traigoPRecio=function(idprod){
	var idMedida=document.getElementById("TipoMedida");
	sajax_request_type = "POST";
	var dato=idMedida.value+"##"+idprod;
	x_TraigoPrecio(dato,this.MuestroDato);
}

shop.prototype.traigoCOlores=function(idprod){
	var idMedida=document.getElementById("TipoMedida");
	
	sajax_request_type = "POST";
	var dato=idMedida.value+"##"+idprod;
	x_TraigoColores(dato,this.MuestroDato);
}

shop.prototype.DivuJoBoton=function(ruta){
	var idMedida=document.getElementById("TipoMedida");
	sajax_request_type = "POST";
	x_TraigoBoton(idMedida.value,this.MuestroDato);
}
shop.prototype.traigoDatos=function(ruta,idprod){	
	var Colores=document.getElementById("Colores");
	var precio=document.getElementById("precio");
	var BotonAgregar= document.getElementById("BotonAgregar");
	if(Colores){
		Colores.innerHTML="<b>Buscando Informacion...</b><br /><img src=\""+ruta+"files/imgGen/pleasewait.gif\" />";
		precio.innerHTML="";
		BotonAgregar.innerHTML="";
	}
	
	this.traigoPRecio(idprod);
	this.traigoCOlores(idprod);
	this.DivuJoBoton(ruta);
}

shop.prototype.MuestroDato=function(valor){
	var Valores=valor.split("{#}");
	var idDiv=document.getElementById(Valores[0]);
	
	idDiv.innerHTML=Valores[1];
}

shop.prototype.CargarArticulo=function(){
	var form=document.producto;
	form.submit();
}
var shopi=new shop();
/*window.onload=function(){	
	
}*/