<!--
function SetResponsavel(){
	if ( document.ficha.responsavel.checked ){
		var nI, nContatos=NumeroContatos(), nAtual=ContatoAtual();
		for (nI=0; nI<nContatos; nI++) aContatos[nI][0] = false;
	}
}

function SetWindow( w, h, t, l ){
	if ( l ) this.Location = l;
	this.width = w ? w : 600;
	this.height = h ? h : 450;
	this.top = t ? t : (screen.availHeight-this.height)/2;
	this.left = l ? l : (screen.availWidth-this.width)/2;
	this.Window = null;
	this.ShowWindow = _ShowWindow;
	this.ShowArquivo = _ShowArquivo;
	this.CloseArquivo = _CloseArquivo;
}

function _ShowWindow( l ){
	with ( this ){
		if ( l ) Location = l;
		if (Window && !Window.closed) {
			Window.focus();
			Window.location = Location;
		} else {
			Window = window.open(Location,'','scrollbars=yes,resizable=no,width='+width+',height='+height+',status=no,location=no,toolbar=no,menubar=no,top='+top+',left='+left+',screenY='+left+',screenX='+top);
		}
	}
}

function _ShowArquivo( h, f ){
	with ( this ){
		if ( h ) Location = h;
		if (Window && !Window.closed) {
			Window.focus();
			Window.location = "readFile.php?file="+Location+"&field="+f;
		} else {
			Window = window.open("readFile.php?file="+Location+"&field="+f,'','scrollbars=yes,resizable=no,width='+width+',height='+height+',status=no,location=no,toolbar=no,menubar=no,top='+top+',left='+left+',screenY='+left+',screenX='+top);
		}
	}
}

function _CloseArquivo(){
	this.Window.window.close();
}
//-->
