// JavaScript Document
<!--
function showInfo(GoodID){
	var Param = '/show_info.php?good=' + GoodID;
	window.open( Param,  'newwindow', config='height=300, width=600, toolbar=no, menubar=no, resizable=no, location=no, directories=no, status=no' );
}

function get_elements_needed(tag, name){
  var alltables = document.all.tags(tag);
  var result = new Array();
  var r=0;
  for(var i=0; i < alltables.length; i++){
    if(alltables[i].name == name){
      result[r] = alltables[i];
      r++;
    }
  }
  return result;
}


function load_chapter(chapterName){
	var chapterImages = document.getElementsByName(chapterName);
	
	for(i = 0; i < chapterImages.length; i++){
		var img_name = chapterImages[i].id + ".jpg";
		var hexdigest = hex_md5(img_name);
//		var flevel = hexdigest[0];
//		var slevel = hexdigest[1];
		var flevel = hexdigest.charAt(0);
		var slevel = hexdigest.charAt(1);
		chapterImages[i].src = "http://www.fabrics.ru/images/gamma/" + flevel + "/" + slevel + "/" + img_name;
	}
}


function hide(id){
  document.getElementById(id).style.display='none';
}


function show_id(id){
  var goodt='t' + id;
  document.getElementById(goodt).style.display='';
  document.getElementById(id).style.fontWeight='bold';
}


function hide_id(id){
  var goodt='t' + id;
  document.getElementById(goodt).style.display='none';
  document.getElementById(id).style.fontWeight='normal';
}


function showAll(){
	var goodsID = document.getElementsByName('goods');

for(i = 0; i < goodsID.length; i++){
		chapterName = goodsID[i].id;
		if(document.getElementsByName){
			var chapterImages = document.getElementsByName(chapterName);
		} else {
			var chapterImages = get_elements_needed('img', chapterName);
		}
		for(ii = 0; ii < chapterImages.length; ii++){
			var img_name = chapterImages[ii].id + ".jpg";
			var hexdigest = hex_md5(img_name);
			var flevel = hexdigest.charAt(0);
			var slevel = hexdigest.charAt(1);
//		var flevel = hexdigest[0];
//		var slevel = hexdigest[1];
			chapterImages[ii].src = "http://www.fabrics.ru/images/gamma/" + flevel + "/" + slevel + "/" + img_name;
		}
	}	
	for(i = 0; i < goodsID.length; i++){
		goodsID[i].style.fontWeight='bold';
		document.getElementById("t" + goodsID[i].id).style.display='';
	}
	document.getElementById("a_show").style.display='none';
	document.getElementById("a_hide").style.display='';

}

function hideAll(){
    var goodsID = document.getElementsByName("goods");

for(i = 0; i < goodsID.length; i++){
    goodsID[i].style.fontWeight='normal';
    document.getElementById("t" + goodsID[i].id).style.display='none';
  }
  document.getElementById("a_hide").style.display='none';
  document.getElementById("a_show").style.display='';
}



-->

