function popupWin (href) { 
	wnd = window.open(href, 'test', 'width=500,height=600,scrollbars=yes,left=' + (screen.width/2 - 500/2) + ',top=' + (screen.height/2 - 600/2));
	wnd.focus();		
}