function trabalhos_popup(url) {
	popup('trabalhos_popup.php?imagem='+url,'trabalho','1','1');
}

function resize(w,h) {
	
	top.resizeTo(w,h);

	var ww = (screen.width/2) - w/2;
	var hh = (screen.height/2) - h/2;

	top.moveTo(ww,hh);

}

function popup(url,nome,w,h){
	var argumentos = 'scrollbars=0,copyhistory=yes,width='+w+',height='+h+',left=0,top=0,screenX=0,screenY=0';
	var novajan = window.open(url,nome, argumentos);
}