﻿function aumentaConteudo(){
    var menuLateral = document.getElementById('menuLateral'); //toda a div do menu lateral
    var conteudo = document.getElementById('conteudo');       //toda a div do conteudo
    var esquerda = document.getElementById('divEsq');
    var diferenca = conteudo.offsetHeight - menuLateral.offsetHeight; //diferenca de tamanho entre menu lateral e conteudo
    if (diferenca < 225){ //225 = limiar de diferença. abaixo deste valor, o conteudo deve se expandir
        conteudo.style.height = conteudo.offsetHeight + (225 - diferenca) + "px"; //aqui aumento o conteudo
        menuLateral.style.height = menuLateral.offsetHeight + (225 - diferenca) + "px"; //idem para o menu lateral
    } else if( (conteudo.offsetHeight - esquerda.offsetHeight) > 145) {
        esquerda.style.height = 500 + (conteudo.offsetHeight - esquerda.offsetHeight)+ "px";
    }
}

var win=null;
function abrePopUp(posicao){
    w='650'; h='400'; rolagem='no'; //largura; altura; rolagem
	if(posicao=="aleatorio"){
		LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;
		TopPosition=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;
		}
	if(posicao=="centro"){
		LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
	} else if( (pos!="centro" && pos!="aleatorio") || pos==null){
		LeftPosition=0;
		TopPosition=20
	}
	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+rolagem+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	win=window.open('linha.aspx','linhadotempo',settings);
}