function findColorByProductCode(x) {
	$.ajax({
		url: "/do/products/findReadyColors",
		data: "productCode=" + x,
		success: function(response) {
			$("#alertChooseColorColors").html(response);
			tb_show(null, window.location + "#TB_inline?height=326&width=295&inlineId=alert2&modal=false", false);
		}
	});
}