/* pop-up window functions */
function makeLarge(url, wPx, hPx) {
	newWin=window.open(url, "popup", "width=" + wPx + ",height=" + hPx + ",top=50,left=50,scrollbars,resizable");
	newWin.focus();
}