// JavaScript Document
var Blocker = new function(){
	//H
	this.hide = function(){
		if(blocker)blocker.style.display = 'none';
	}
	
	//I
	this.init = function(){
		blocker = $('blockeadorGeneral');
		setOpacity(70,blocker);
	}
	
	//S
	this.show = function(){
		if(!iniciado)this.init();
		blocker.style.height = HBody()+'px';		
		blocker.style.width = WScreen()+'px';
		blocker.style.display = 'block';
	}
	
	var blocker = null;
	var iniciado = false;
}