// Abre um pop-up centralizado com os valores da tabela
function tabela(numero, empresa, w, h) {
		//var w = 400; 	
		//var h = 500;
		
		arquivo = 'imagens/produto/' + empresa + '/tb_' + numero + '.jpg';
		
		var x = Math.ceil( (window.screen.height - h) / 2 );
		var y = Math.ceil( (window.screen.width - w) / 2 );
		window.open('popups/fotos.asp?arquivo=' + arquivo + '','Máquina','width=' + w + ',height=' + h + ',top=' + x + ',left=' + y + ',location=no,status=no,menubar=no,scrollbars=yes,resizable=no,directories=no,toolbar=no');
}
function redimensionar(H,W){
	var W = parseInt(W+11);
	var H = parseInt(H+49);
	window.resizeTo(W,H);
	centralizar(H,W);
}
function centralizar(H,W){		
	var Y	= Math.ceil( (window.screen.height - H) / 2 );
	var X	= Math.ceil( (window.screen.width - W) / 2 );
	window.moveTo(X,Y);
}

function foto(numero, empresa, w, h) {
		//var w = 400; 	
		//var h = 500;
		
		arquivo = 'imagens/produto/elevadores/' + empresa + '/' + numero + '.jpg';
		
		var x = Math.ceil( (window.screen.height - h) / 2 );
		var y = Math.ceil( (window.screen.width - w) / 2 );
		window.open('popups/fotos.asp?arquivo=' + arquivo + '','Máquina','width=' + w + ',height=' + h + ',top=' + x + ',left=' + y + ',location=no,status=no,menubar=no,scrollbars=no,resizable=no,directories=no,toolbar=no');
}



