function openfoto( foto, altura, largura )
{
	abrir = 'visualizarfoto.php?&id_foto='+foto;

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

function openfoto2( foto, altura, largura )
{
	abrir = 'visualizarfoto2.php?id_foto='+foto;

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

function abrirfoto( foto, evento, altura, largura )
{
	abrir = 'abrirfoto.php?id_foto='+foto+'&evento='+evento;

	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();
}