function apostilas2_verificacao(){
	apostilas2_quantidade();
}
function apostilas2_quantidade(){
	quantidade = document.forms['formApostilas2'].quantidade.value;
	if (quantidade == ''){
		alert('Campo QUANTIDADE vazio.');
		document.forms['formApostilas2'].onsubmit = function(){return false;};
		document.forms['formApostilas2'].quantidade.focus();
	}
	else if (isNaN(quantidade)){
		alert('Campo QUANTIDADE deve ser número.');
		document.forms['formApostilas2'].onsubmit = function(){return false;};
		document.forms['formApostilas2'].quantidade.focus();
	}
	else{
		apostilas2_true();
	}
}
function apostilas2_true(){
	document.forms['formApostilas2'].onsubmit = function(){return true;};
}
