function popup(url, width, height)
{
	var features = 'directories=0,height='+height+',width='+width+',location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0';

	var hWnd = window.open(url, '', features, true);

	return hWnd;
}

