OK- I'm just taking a quick break from MW. I just want to know what file in RTW makes people declare war. Sorry, this is a bit offtopic but never mind, it's christmas

. It's just for one question. I found this:
Code:
def EJul2_1940(self):
# USSR DOW Baltic
popup = PyPopup.PyPopup(-1)
szTitle = localText.getText("TXT_KEY_WW2_EJUL2_1940_TITLE", ())
szText = localText.getText("TXT_KEY_WW2_EJUL2_1940_TEXT", ())
popup.setHeaderString(szTitle)
popup.addSeparator()
popup.setBodyString(szText)
popup.launch()
self.pUSSRTeam.declareWar(self.pBalticID, false, WarPlanTypes.WARPLAN_TOTAL)
How do I make it include other nations. I'm replacing Baltic States wirh Latvia Estonia and Lithiana. I'm guessing I need to specify them as pBalticID? If so, how?