	function resizeWin(newLoc, newHeight, newWidth) {								
		// Open new window in specified size
		newWin = open("",newLoc,"scrollbars=yes,resizable=yes,status=no,height=" + newHeight + ",width=" + newWidth);
		newWin.focus()
		}

