function abrePop(nome,url,atributos)
{
	if(win = window.open(nome,url,atributos))
	{
		return true;
	}
	else
	{
		return false;
	}
}