function maximizar()
{
	window.moveTo(0,0);
	if (document.all) {
		top.window.resizeTo(screen.availWidth,screen.availHeight);
	}
	else if (document.layers||document.getElementById) {
		if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
			top.window.outerHeight = screen.availHeight;
			top.window.outerWidth = screen.availWidth;
		}
	}
}

function openfoto( foto, dirFoto, altura, largura, desc )
{
	if (altura>largura)
	{
		largura += 15;
	}
	abrir = 'visualizarfoto.php?strDirFotos='+dirFoto+'&id_foto='+foto+'&desc='+desc;

	tipo = 'width='+largura+', height='+altura+', scrollbars=yes';
	var foto_ = window.open( abrir, 'JANELA_FOTO', tipo );
	foto_.focus();
}
function openfotop( foto, dirFoto, altura, largura, desc )
{
	if (altura>largura)
	{
		largura += 15;
	}
	abrir = 'visualizarfotop.php?strDirFotos='+dirFoto+'&id_foto='+foto+'&desc='+desc;

	tipo = 'width='+largura+', height='+altura+', scrollbars=yes';
	var foto_ = window.open( abrir, 'JANELA_FOTO', tipo );
	foto_.focus();
}
function openfotoProjeto( foto, dirFoto, altura, largura, desc )
{
	if (altura>largura)
	{
		largura += 15;
	}
	abrir = 'visualizarfotoProjeto.php?strDirFotos='+dirFoto+'&id_foto='+foto+'&desc='+desc;

	tipo = 'width='+largura+', height='+altura+', scrollbars=yes';
	var foto_ = window.open( abrir, 'JANELA_FOTO', tipo );
	foto_.focus();
}

function openurl(url)
{
	window.open(url,'PROCURAR','width=800, height=300, top=10, left=10, scrollbars=yes')
}

function retorna(form, campo, valor)
{
	window.opener.document.getElementById(campo).value=valor;
	campo = campo + "_";
	window.opener.document.getElementById(campo).value=valor;
	window.close();
}
