function change_image(objImage, strPath)
{
	objImage.src = strPath;
}
//----------------------------------------------------------------------------------------------------
function hideIMG(img){
	img.style.filter="alpha(opacity:60)";
}
//----------------------------------------------------------------------------------------------------
function showIMG(img){
	img.style.cursor="hand";
	img.style.filter="alpha(opacity:100)";
}
