function addFlash(file, target, width, height, flashvars, bg, wmode)
{
	if(!bg) {
		bg = "0xFFFFFF";
	}
	
	if(!wmode) {
		wmode = "transparent";
	}
	
	var params = { quality: "high", scale: "noscale", wmode:wmode, allowscriptaccess: "always", bgcolor: bg };
	var attributes = { id: target, name: target };
	if(!flashvars) {
		var flashvars = { };
	}
	
	swfobject.embedSWF(file, target, width, height, "10", "files/expressInstall.swf", flashvars, params, attributes);	
}

function enviaContato(data) {
	$.ajax({
		url: 'envia_contato.php',
		global: false,
		type: "POST",
		data: (data),
		dataType: "html",
		success: function(data){
			if(data == 'true') {
				$('#sucesso').show();
				$('#form_contato').clearForm();
			} else {
				$('#erro').show();
			}
		}
	});
}

function busca( campo ) {

	var str = $('#' + campo ).val();
	
	window.location = '?l=10&search=' + str;
}

function viewProduto (codigo) {
	Utils.openWindow('produto.php', { codigo: codigo }, 500, 400);
}
function viewProdutoDebett (codigo) {
	Utils.openWindow('produto.php', { debett:'true', codigo: codigo }, 500, 500);
}

function newsletter() {
	var email = $('#email_receba').val();
	if(email == '') {
		$('#email_receba').focus();
	} else {
		Utils.openWindow('newsletter.php', { email:email }, 500, 400);
	}
}
