// ..................................................................

function popup(href, title, width, height)
{
	this_top = (screen.height - height) / 2;
	this_left = (screen.width - width) / 2;
	xx = parent.open(href, title, 'toolbar=0, Scrollbars=0, menubar=0, directories=0, status=0, resizable=1, width=' + width + ', height=' + height + ', top=' + this_top + ', left=' + this_left);
	xx.focus();
	return false;
}

// ..................................................................