const table_wrapper = "
"+ "
"+ "
"+ "
"+ "
"+ "
"+ "
"+ "
"+ "
"+ "
"+ "
"+ "

A/C: Kol-Kapasite

W: Genişlik   H: Yükseklik   D: Derinlik

Ölçüler cm

"+ "
"; const codes = [10,12,15,16] const w100 = [203,240,278] const w120 = [223,260,298] const w150 = [253,290,328] const w160 = [263,300,338] function createTable(Carpet,Code,Height,Width,Depth){ const table = [ {"Ebat": "", "Kod":"MNR "+codes[Code]+'1',"A/C":"10/20","W": Width[0],"H":Height,"D":Depth}, {"Ebat": Carpet,"Kod":"MNR "+codes[Code]+'2',"A/C":"15/30","W": Width[1],"H":Height,"D":Depth}, {"Ebat": "", "Kod":"MNR "+codes[Code]+'3',"A/C":"20/40","W": Width[2],"H":Height,"D":Depth}, ]; document.getElementById("table_"+Carpet).innerHTML = jsonToHtmlTable(table); } document.getElementById("table_wrapper").innerHTML = table_wrapper; createTable("100x200",0,235, w100, 120); createTable("120x200",1,235, w120, 140); createTable("150x230",2,265, w150, 170); createTable("160x230",3,265, w160, 180);