// pop up window on set focus on it
function popupWin(anchor, name) {
	var win = window.open(anchor.getAttribute('href'), name, 'width=500px, height=500, status, resizeable, scrollbars');
	win.focus();
}
