// JavaScript Document
empresa = function(){
	new Ajax.Updater(
				'divPrincipal',
				'empresa.php'
			);
}

produtos = function(){
	new Ajax.Updater(
				'divPrincipal',
				'grupos.php'
			);
}

assistencia = function(){
	new Ajax.Updater(
				'divPrincipal',
				'assistencia.php'
			);
}

contato = function(){
	new Ajax.Updater(
				'divPrincipal',
				'contato.php'
			);
}

Detalhes = function( id ){
	wDetalhes = window.open( 'detalhes.php?id=' + id, 'Detalhes', 'width=600;heigth=400' ); // ficha técnica
	wDetalhes.focus( );
}

listaGrupos = function( op ){
	new Ajax.Updater( 'listaProdutos', 'lista.php', { method: 'post', parameters: 'grupo=' + op } );
}
