// Data por extenso em Portugu&ecirc;s
// (c) 1999-2004, M&aacute;rcio d'&Aacute;vila

function linkMail(pNome, pDominio, pText, pAttr, pQuery)
{
	var destino = pNome + '@' + pDominio;

	var rotulo = (pText!=null && pText!="")? pText: destino;
	var link = '<a';
	if (pAttr!=null) link += ' ' + pAttr;
	link += ' href="m' + 'ailto:' +  destino

	if (pQuery!=null) link += '?' + pQuery;

	link += '">' + rotulo + '</a>';

	document.write(link);
	return link;
} // linkMail

var screenshot;

function wshot(pUrl, pW, pH)
{
	if (pW==null) pW=640;
	if (pH==null) pH=480;
	if (screenshot!=null && !screenshot.closed) screenshot.close();
	screenshot = window.open(pUrl, 'screenshot', 'width='+(pW+20)+',height='+(pH+20));
	return false;
} //wshot

