function swapImg(pObj, pImg)
	{
	pObj.src = pImg + '_h.png';
	pObj.onmouseout = function()
		{
   		pObj.src = pImg + '.png';
 		};
	}

function goBack()
  {
  window.history.back()
  }

