
function hideAlert()
{
	$("#novadiv").animate({opacity: "0"}, 500);
	$("#novadiv2").animate({opacity: "0"}, 500); 
	
	setTimeout("document.body.removeChild(document.getElementById('novadiv'))",500);
	setTimeout("document.body.removeChild(document.getElementById('novadiv2'))",500);

}


function showAlertc( e )
{
	if(!document.getElementById('novadiv'))
	{
		var p = document.createElement("div");
		p.style.position = 'absolute'
		p.style.top = '0px';
		p.style.left = '0px';
		p.style.width = '100%';
		p.style.height = '200%';
		p.style.opacity = '0';
		p.id = 'novadiv';
		
		p.style.backgroundColor = '#333333';
		p.innerText = '';
		
		document.body.appendChild(p);
	}
	
	if(!document.getElementById('novadiv2')) 
	{
		var p = document.createElement("div");
		p.style.position = 'absolute';
		p.style.top = '40%';
		p.style.left = '25%';
		p.style.width = '640px';
		p.style.opacity = '0';
		p.id = 'novadiv2';

		
		p.innerHTML = e;
		
		document.body.appendChild(p);
	}
	
	$("#novadiv").animate({opacity: "0.8"}, 500);
	$("#novadiv2").animate({opacity: "1"}, 500); 
}

function simulador(caminho){	
	$.post("orcamento.php?id="+caminho, { pagz: caminho }, function( e ) { showAlertc( e ); });
}

