/* resizing images by id if larger than w,h to w,h */

function imgresize(id,w,h) {
	if (document.getElementById(id).width > w) {
		document.getElementById(id).width = w;
	}
	if (document.getElementById(id).height > h) {
		document.getElementById(id).height = h;
	}
}

