function popup(url, width, height)
{
	var theWindow = window.open(url, 'pop', 'location=0,statusbar=1,menubar=1,scrollbars=yes,width=' + width + ',height=' + height);
	theWindow.focus();
	return theWindow;
}