function imported_pic_resize(elm,mw,mh)
	{
		var dim = $(elm).getDimensions();
		
		if(dim.width > mw)
			{
				elm.width = mw;
				elm.removeAttribute('height');
			}
		
		if(dim.height > mh)
			{
				elm.removeAttribute('width');
				elm.height = mh;
			}
	}