function resizeImages() {
	if (document.images) {
		var imgLinkImage = new Image();
		var imageId = 'LinkImage1';
		var myCount = 1;
		while (document.getElementById(imageId)) {
			imgLinkImage = document.getElementById(imageId);
			if (imgLinkImage.width > 350) {
				imgLinkImage.width = 350;
			}
		myCount += 1;
		imageId = 'LinkImage'+myCount;
		}
	}
}
