function resizePage() {
	var allTables = document.getElementsByTagName('table');
	for (var i = 0;i < allTables.length; i++) {
		if (allTables.item(i).id!='allWidth') {
			if (allTables.item(i).width > 609) {
				allTables.item(i).width = 609;
			}
		}
	}
	var allImages = document.getElementsByTagName('img');
	for (var i = 0;i < allImages.length; i++) {
		if (allImages.item(i).id.indexOf('exImg_')!=0 && allImages.item(i).id!='banner') {
			if (allImages.item(i).width > 609) {
				allImages.item(i).width = 609;//--609--
			} else if (allImages.item(i).alt=='nems_image' && allImages.item(i).height > 60) {
				allImages.item(i).height = 60;
			}
		}
	}
	//reduce the header icon
	var rightLogo = document.getElementById('rightLogo');
	if(rightLogo) {
		if (rightLogo.height > 61) {
			rightLogo.height = 61;
		}
	}
}
