256.

How will you close all the Popups for a particular parent window when it is closed? using javascript

var w1 = window.open('some url')
var w2 = window.open('some url')
var w3 = window.open('some url')

w1.close()
w2.close()
w3.close()