var popwin = null;

function showPop(img, alt) {
	closeWin();
	popwin = window.open('', 'popwin', 'width=420,height=320,left=100,top=100')
	popwin.document.write('<html><head><title>'+alt+'</title></head><body bgcolor="#1A2945"><center>');
	popwin.document.write('<table width="400" border="0" cellspacing="0" cellpadding="0"><tr><td><img src="'+ img +'" width="400" height="300" alt="'+alt+'"></td></tr></table>');
	popwin.document.write('</center></body></html>');
}

function closeWin() {
	if (popwin != null) {
		popwin.close();
	}
}