/*******************************************************************
 * Copyright (C) 2006 Thiago Caetano
  ************************
  thiagocae @ gmail.com
********************************************************************/

/********************************************************
* Menu
********************************************************/
var Menu = Class.create();
Menu.prototype = {
	initialize: function(){
		this.atual = "";
		this.padrao = "a";
	},
	Mostra: function(nome,hide){
		if(hide){
			Element.hide(this.atual);
			Element.show(this.padrao);
			this.atual = "";
			return;
		}
		this.atual = nome;
		Element.hide(this.padrao);
		Element.show(this.atual);
	},
	
};
Menu = new Menu();


/********************************************************
* Conteudo
********************************************************/
function Abrir(url){
	var largura = 2;
	var altura = 2;
	window.open("/leila/verimagem/imgs/"+url,"foto","width="+largura+",height="+altura+",left=0,top=0,scrollbars=0");
}
function Centrar(largura,altura){
	var centra = new Array();
	centra[0] = (screen.width/2)-(largura/2);
	centra[1] = (screen.height/2)-(altura/2);
	return centra;
}

