function ajustaMargem() {
	w = screen.width;
	
	if (w > 1000) {
		$('table_principal').style.paddingLeft = 100;
	}
}

function checkarOrcamento(id) {
	$(id).checked = 'checked';
}

function janela(mypage, myname, w, h, scroll) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable=no,status=no'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function abreImagemNoticia(idNoticia, idImagem, width, height) {
	janela('imagem.php?idNoticia='+idNoticia+'&idImagem='+idImagem, 'Imagem',width, height, 'no' );
}

function enviaForm(){
	var valorMinimo = 50;	
	
	if ($('Quantidade_NUM1').value < valorMinimo) {
		alert('Quantidade minima é de ' + valorMinimo + ' produtos.');
		$('Quantidade_NUM1').focus();
	} else {
		Enviar('frmOrcamento');
	}
}
