<!--
var timeStr, dateStr;
function clock() {
	now= new Date();
	hours= now.getHours();
	minutes= now.getMinutes();
	seconds= now.getSeconds();
	timeStr= " " + hours;
	timeStr+= ((minutes < 10) ? ":0" : ":") + minutes;
	timeStr+= ((seconds < 10) ? ":0" : ":") + seconds;
	clockValue.innerHTML = "<font color=#FFFFFF>Hor&aacute;rio de Bras&iacute;lia: " + timeStr + "</font>";
	Timer= setTimeout("clock()",1000);
}

function openCotTranspAnuncio(id){
	window.open('cotTranspAnuncio.asp?id='+id,'','width=500, height=500, top=50, left=1, scrollbars=1');
}

function openFinancAnuncio(id){
	window.open('FinancAnuncio.asp?id='+id,'','width=500, height=500, top=50, left=1, scrollbars=1');
}

function click() {
	if (event.button==2||event.button==3){
		oncontextmenu='return false';
	}
}

document.onmousedown=click
document.oncontextmenu = new Function("return false;")
// -->
