function popup(url, win_title, features) {
	new_win = window.open(url, win_title, features);
	new_win.moveTo(100,100);
	new_win.focus();				
}