Есть две таблицы одна инвентарь,другая экипировка.Нужно передать картинку предмета из инвентаря в экипировку.
function checkItem(iName)
{
document.inv.slot1.helmet.src = 'Items/'+iName;
document.eqip.helm_Image.value = iName;
}
<table name="inv" widht="180" border=1 heigh="120">
<tr><td width="180" bgcolor="#6B6683" height="16">
Рюкзак</font></b></td></tr>
<tr><td id="slot1" onclick="checkItem();">
<img src="Items/helmet.jpg" name="helmet" >
</td>
<td>
<img src="Items/armor.jpg" id="armor">
</td>
</tr>
<tr>
<td>
</td>
</tr>
<tr>
<td>
<img src="Items/mace.jpg" id="mace">
</td>
<td>
<img src="Items/belt.jpg" id="belt">
</td>
<td>
<img src="Items/shoes.jpg" id="shoes">
</td>
</tr>
</table><br>
<button name="btn1" value="Одеть" onclick="checkItem()">Одеть</button>
<table id="eqip" border="1" width="183" height="228" cellspacing="0" cellpadding="0" bgcolor="#BFBFBF" bordercolor="#666699">
<tr>
<td id="helm_Image" width="27" height="32" rowspan="2" colspan="2" valign="top"><img src="items\helmet_empty.jpg"></td>
<td width="99" height="176" rowspan="5" valign="top" colspan="2"><img border="0" name = "mainimage" src="items/pers.jpg"></td>
<td id=""width="49" height="23" colspan="2" valign="top"><img src="items\ear_empty.jpg"></td>
</tr>
<tr>
<td width="49" height="2" colspan="2" valign="top"><img src="items\necklace_empty.jpg" name="img1"></td>
</tr>
<tr>
<td width="27" height="80" colspan="2" valign="top"><img src="items\weapon_empty.jpg" name="img2" ></td>
<td width="49" height="80" colspan="2" valign="top"><img src="items\shield_empty.jpg" name="img3" ></td>
</tr>
<tr>
<td width="27" height="77" colspan="2" rowspan="2" valign="top"><img src="items\armor_empty.jpg" name="img4" ></td>
<td width="49" height="40" colspan="2" valign="top"><img src="items\gloves_empty.jpg" name="" ></td>
</tr>
<tr>
<td width="99" height="34" valign="top" colspan="2"> </td>
<td width="49" height="31" colspan="2" valign="top" rowspan="2"><img src="items\shoes_empty.jpg" name="img5" ></td>
</tr>
<tr>
<td width="27" height="1" colspan="2" valign="top"><img src="items\belt_empty.jpg" name="img6" ></td>
<td width="44" height="3" valign="top"> </td>
<td width="53" height="3" valign="top"> </td>
</tr>
</table>
По задумке каждая ячейка инвентаря соответствует ячейке экипировки.Вот такие пироги.