function imprimir() {
	
	if (window.print) {
		setTimeout('window.print();',200);
	}
	else if (agt.indexOf("mac") != -1) {
		alert("Pressione 'Cmd+p' em seu teclado para imprimir esta página.");
	}
	else {
		alert("Pressione 'Ctrl+p' em seu teclado para imprimir esta página.")
	}
}

function openDir( form ) { 

	var newIndex = form.fieldname.selectedIndex; 

	if ( newIndex == 0 ) { 

		alert( "Please select a location!" ); 

	} else { 

		cururl = form.fieldname.options[ newIndex ].value; 

		window.location.assign( cururl ); 

	} 

} 

function janela() { 
window.open("", "janela", "width=500,height=350,toolbar=0,directories=0,menubar=0,status=1,resizable=0,location=0,scrollbars=1,copyhistory=0") 
}