function resizeImg(obj,max)
{
	if (obj.width > max)
	{
		obj.width=max;
	}
}
