
function popup(url) {
	var newwindow = window.open(url,'popup','width=420,height=500');
	if (window.focus) {
		newwindow.focus();
	}
}