//Open pop-up window.
function newWindow(winImg,winName,attributes) {
	newWin = window.open(winImg, winName, attributes);
	newWin.focus();
}
