function openAlt(pag, janela) {
window.open(pag, janela, 'toolbar=no,width=750,height=600,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,maximized=no,copyhistory=no,top=10px');
}


function addCesta(codProd) {
	if (codProd != null) {
	document.formAddCesta.toAlt.value= "0";
	document.formAddCesta.MM_insert.value= "true";
	document.formAddCesta.qtd.value= "1";
	document.formAddCesta.cod_prod.value= codProd;
	document.formAddCesta.action = "cesta_add.asp";
	document.formAddCesta.submit();
	}
	
}

