function popup(url, width, height) {
	/* open popup window */
	popupwindow = window.open(url, 'popup', 'scrollbars=yes,resizable=yes,height='+height+',width='+width+'');
	/* set focus on it */
	if (window.focus) {popupwindow.focus()}

	return false;
}
