function reScale(){
	parent.document.getElementById("content").height=1;
	var htotal=document.body.scrollHeight;
	parent.document.getElementById("content").height=htotal;
}

function Data(){
					days = new Array(7)
					days[1] = "Domingo";
					days[2] = "Segunda-feira";
					days[3] = "Terça-feira";
					days[4] = "Quarta-feira";
					days[5] = "Quinta-feira";
					days[6] = "Sexta-feira";
					days[7] = "Sábado";
					months = new Array(12)
					months[1] = "Janeiro";
					months[2] = "Fevereiro";
					months[3] = "Março";
					months[4] = "Abril";
					months[5] = "Maio";
					months[6] = "Junho";
					months[7] = "Julho";
					months[8] = "Agosto";
					months[9] = "Setembro";
					months[10] = "Outubro";
					months[11] = "Novembro";
					months[12] = "Dezembro";
					today = new Date(); day = days[today.getDay() + 1]
					month = months[today.getMonth() + 1]
					date = today.getDate()
					year=today.getYear();
					if (year < 2000)
					year = year + 1900;
					document.write ("<font face='Arial' color=cc0000 style='font-size:10px; font-weight:bold;'> "+ day +
					", " + date + " de " + month + " de " + year + "." + "</font>")
					// -- end hiding
	
}

function Seleciona(ID)
		{
		if(ID == '')
			{
			ListProduto.location='base.html';
			}
		else
			{
			if(ID == 1)
				{
				ListProduto.location='ListaProdutos.asp';
				}
			if(ID == 2)
				{
				ListProduto.location='ListaProdutos.asp';
				}
			}
		}
