﻿function InitializePage() {
	UpdateForm('nominate', 'nominateform');
	UpdateForm('awardform', 'awardform');
}
function ChangeImage(path, width, height) {
	// Get imageviewer obj!!
	var newImg = new Image();
	newImg.src = path;
	var img = document.getElementById('imageviewer')
	img.src = newImg.src;
	//img.width = width;
	//img.height = height;
}
