function modpost1(elmid) {
if (document.getElementById) {
	x = document.getElementsByTagName("div");
	primeranota = x.item(elmid);
	primeranota.id = 'primeranota';
}
}

function toggledisplay(elmid) {
if (document.getElementById) {
	x = document.getElementById(elmid);
	y = x.style.display
	if (y != 'block') {
		x.style.display = 'block';
	} else {
		x.style.display = 'none';
	}
	return false;
}
}

function OpenComments (url) {
	window.open(url,
		'comenta_tremendo',
		'width=480,height=480,scrollbars=yes,status=yes');
}
