function setBGColor(obj, bg)
{
	if (obj.style)
		obj.style.backgroundColor = bg;
}

/**
 * Open new dialog
 *
 * @param   string    url	for the dialog
 */
function	openDialog(url)
{
	dlg	=	window.open(url, "dialog", "dependent=yes,width=340,height=450,scrollbars=no");
	dlg.focus();
}	//	openDialog()