// JavaScript Document

function change_liststyle(nombre_id)
{
 
document.getElementById(nombre_id).style.listStyleImage="url(imgs/flecha-azul-abajo.jpg)";

}

function field_visible(value)
{
	//alert(value);
	if( value =='VENDER'){
	document.getElementById('display_field').style.display="inline";
	document.getElementById('display_rfc').style.display="inline";
	}
	else
	{
		document.getElementById('display_field').style.display="none";
		document.getElementById('display_rfc').style.display="none";
	}
}