//nume = numele criteriului de selectare
//valoare = valoare
function popup(mylink,nume,valoare1,valoare2)
{
    if (! window.focus)
        return true;
    else
    {
	var href;
	if (typeof(mylink) == 'string')
    	    href=mylink;
	else
    	    href=mylink.href;
	href+='&obt='+nume+'&val1='+valoare1+'&val2='+valoare2;
//	window.alert(href);
	window.open(href,'Selecteaza','width=400,height=400,menubar=no,scrollbars=yes,resizable=yes');
	return false;
    }
}