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