function resizeIMG(img, wmax)
{
	if (img.clientWidth > wmax) img.style.width = wmax;
}
