function popup(pstrURL, pNome, piWidth, piHeight, piX, piY)
{
	if(piX)
	{
		var wndPopup = window.open(pstrURL, pNome,
			"location=no" +
			",menubar=no," +
			",status=no," +
			",toolbar=no," +
			",scrollbars=no," +
			",resizable=no," +
			",height=" + piHeight + 
			",width=" + piWidth +
			",left=" + piX +
			",top=" + piY);
	}
	else
	{
		var wndPopup = window.open(pstrURL, pNome,
			"location=no" +
			",menubar=no," +
			",status=no," +
			",toolbar=no," +
			",scrollbars=no," +
			",resizable=no," +
			",height=" + piHeight + 
			",width=" + piWidth);
	}
	wndPopup.focus();
}

function Info(pstrURL)
{
	popup(pstrURL, "info", 225, 500);
}

function Midia(pstrURL)
{
	popup(pstrURL, "Midia", 400, 300);
}

function Artigo(pstrURL)
{
	popup(pstrURL, "Artigo", 790, 440, 1, 1);
}