<!--
function ValForm_AdminRefe(Var, Length)
	{
	if(Var.length>=Length) return true;
		else
			{
			alert("A referência deve ter pelo menos "+Length+" caracteres."); 
			return false;
			}
	}
function Apiis_Aux_Distritos_Update(Form, Campo, Distrito, Sel)
	{
	eval("document."+Form+"."+Campo+".length=0;");
	if(Distrito!="0")
		{
		 for(i=1;i<concelhos[Distrito].length;i++)
			eval("document."+Form+"."+Campo+".options[i]=new Option(concelhos[Distrito][i], i);");
		eval("document."+Form+"."+Campo+".selectedIndex=Sel;");
		}
		else
			{
			eval("document."+Form+"."+Campo+".length=1;");
			eval("document."+Form+"."+Campo+".options[0]=new Option(' ','0');");
			}

	}
	
function __api_dataesc_user(Form, Campo)
	{
	Act = document[Form][Campo].value;
	popupWindow = open('prow.php?prow=900__apidataesc_user&fnome='+Form+'&fcampo='+Campo+'&act='+Act, '', 'scrollbars=yes,resizable=no,WIDTH=250,HEIGHT=200,TOP=170,LEFT=400');
	if (popupWindow.opener == null) 
		{
		popupWindow.opener = self;
		}
	popupWindow.focus();
	}
-->
