function openWin(URL,TITLE,largura,altura)
	{
	altura2 = altura/2;
	largura2 = largura/2;
    posx = (screen.width/2)-(largura2);
	posy = (screen.height/2)-(altura2); 
	semx = window.open(URL,TITLE,'width='+largura+',height='+altura);
	semx.moveTo(posx,posy);
	semx.focus();
	}

function fundos()
{
fundos = new Array("fundo_radio_769x661.jpg","fundo_observatorio_769x661.jpg","fundo_medicina_769x661.jpg","fundo_eletrotecnica_769x661.jpg","fundo_direito_769x661.jpg");
posicao = parseInt(Math.random()*fundos.length);
fundo = "img/fundos/"+fundos[posicao];

document.body.style.background = 'url('+fundo+') no-repeat 50% 0%';
}

function listImagens()
{
menu = document.getElementById("esquerda");
elem = menu.childNodes;
j=0;
for(i=0;i<elem.length;i++)
	{
elem_lista = elem[i];
	if(elem_lista.nodeName == "LI")
		{
		j++;
	elem_lista.style.background = "url(img/img_esquerda/set_"+(j)+"_15x15.gif) 0% 50% no-repeat";
		}
	}
}


