//IMPRESSÃO DOS ARQUVOS

function PrintPage() {
  if (window.print)
    window.print()
  else
    alert("O script não conseguiu enviar o documento diretamente para impressão,nPressione Ctrl+P ou selecione Imprimir no menu Arquivo para imprimir esta página.");
}


// CÁLCULO DE BTU

function capacidade(f)
{
var Ar = parseInt(f.Pessoas.value)+ parseInt(f.Dimensoes.value)+ parseInt(f.Computador.value);
var BTUs = Ar * 600;
f.Btus.value = BTUs;
}


// ABRE JANELAS

function createWindow(url, WinName, theWidth, theHeight){
	var winLeft = (screen.width - theWidth) / 2;
	var winTop = (screen.height - theHeight) / 2;
	window.open(url, WinName, 'titlebar.maximize=no, scrollbars=no, resizable=no, width=' + theWidth + ', height=' + theHeight + ', left=' + winLeft + ', top=' + winTop);
}

function createScrollingWindow(url, WinName, theWidth, theHeight){
        var winLeft = (screen.width - theWidth) / 2;
        var winTop = (screen.height - theHeight) / 2;
        window.open(url, WinName, 'titlebar.maximize=no, scrollbars=yes, resizable=no, width=' + theWidth + ', height=' + theHeight + ', left=' + winLeft + ', top=' + winTop);
        window.open(url, WinName, 'titlebar.maximize=no, scrollbars=yes, resizable=no, width=' + theWidth + ', height=' + theHeight + ', left=' + winLeft + ', top=' + winTop);
}
