var win; 
function poplisting(listing) {

	if (win && !win.closed) {
		win.close();
	}
	win = window.open(listing,"","scrollbars=no,width=460,height=640,left="+(screen.width - 460) / 2+",top="+(screen.height - 640) / 2);
	if (!win.opener) {
		win.opener = window;
	}
}