//---------------------------------------------------------//
//  Novo mostraDetalhes para funcionar também no Firefox   //
//---------------------------------------------------------//
function mostraDetalhes(c){
	if (document.getElementById(c).style.display == 'none'){
		document.getElementById(c).style.display = '';		
	}
	else {
		document.getElementById(c).style.display = 'none';
	}
}
//--------------------------------------------------------//

function displayWindow(theURL,winName,width,height,features) { //v3.1
				// Made by Eddie Traversa modified from Macromedia Code
				// http://nirvana.media3.net/
				var window_width = width;
				var window_height = height;
				var newfeatures= features;
				var window_top = (screen.height-window_height)/2;
				var window_left = (screen.width-window_width)/2;
				newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');
				newWindow.focus();
			}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
