var obj;

var brows = navigator.userAgent;
brows = brows.split("MSIE");


function show_fields(val){
// f - поля физического лица
// ur - поля юридического лица

	if ( val == 2 ){

		for(var i=1; i<=10; i++){
			obj = document.getElementById("f"+i);
			if (obj!=null)
				obj.style.display = "none";
		}

//		obj = document.getElementById("ur01");
//		if (obj!=null)
//			obj.style.display = "table-row";


		for(var i=0; i<=20; i++){
			obj = document.getElementById("ur"+i);
			if (obj!=null){
				if (brows.length > 1)//имеем дело с ie
					obj.style.display = "block";
				else
					obj.style.display = "table-row";
			}
		}
	}
	else{
		for(var i=1; i<=10; i++){
			obj = document.getElementById("f"+i);
			if (obj!=null){
				if (brows.length > 1)//имеем дело с ie
					obj.style.display = "block";
				else
					obj.style.display = "table-row";
			}
		}

//		obj = document.getElementById("ur01");
//		if (obj!=null)
//			obj.style.display = "none";


		for(var i=0; i<=20; i++){
			obj = document.getElementById("ur"+i);
			if (obj!=null)
				obj.style.display = "none";
		}
	}
}
