var popwin = null;

function sizes(id) {
	closeWin();
	url = ''+id+'.htm';
	popwin = window.open(url, 'popwin', 'width=400,height=290,left=100,top=100');
}

function closeWin() {
	if (popwin != null) {
		popwin.close();
	}
}