/*********************************************************
      Versao: 2007.1
     Projeto: Solucionator
  Criado por: alex.sevilla@gmail.com
Data criacao: 10/06/2007
Alterado por: 
   Descricao: script do popon
     Métodos: 
*********************************************************
                 http://www.solucionator.com
*********************************************************/
var popOn = Class.create();
popOn.prototype = {
  initialize: function(sID, sIDAnim) {
    this.sID = sID;
	this.sIDAnim = sIDAnim;
  },
  centralize: function(){
	$(this.sIDAnim).style.position = 'absolute';
	width = ($(this.sID).clientWidth - $(this.sIDAnim).width)/2;
	height = ($(this.sID).clientHeight - $(this.sIDAnim).height)/2;
	$(this.sIDAnim).style.top = height;
	$(this.sIDAnim).style.left = width;
  },
  hide: function(){
    $(this.sID).style.display = 'none';
  }
  };
oPopOn = new popOn('popon', 'poponanim');
