function Popup()
{
	this.popup_visualizar = false;
	this.popup_indique_visualizar = false;
}

Popup.prototype.visualizar = function(url)
{
	if(!this.popup_visualizar)
	{
		this.popup_visualizar = document.getElementById('layerGeral_popup').innerHTML;
	}	
	else
	{
		document.getElementById('layerGeral_popup').innerHTML = this.popup_visualizar;
	}	
	
	document.getElementById('layerGeral_popup').style.display = '';
	document.getElementById('layerOpaco_popup').style.display = '';
	
	var pagina = Diversos.getPageSize();
	
	document.getElementById('layerGeral_popup').style.height = pagina.pageHeight + 'px';
	document.getElementById('layerGeral_popup').style.width = pagina.pageWidth + 'px';
	
	document.getElementById('layerOpaco_popup').style.height = pagina.pageHeight + 'px';
	document.getElementById('layerOpaco_popup').style.width = pagina.pageWidth + 'px';
	
	if(this.popup_indique_visualizar)
	{
		if(url)
		{
			LinkAjax.send(url, 'miolo-indique', 'carregando-indique');
		}
		this.popup_indique_visualizar = false;
		if(document.getElementById('conteudoPopup'))
		{
			document.getElementById('conteudoPopup').style.display = 'none';
		}
		if(document.getElementById('layerMiolo_indique'))
		{
			document.getElementById('layerMiolo_indique').style.display = '';
		}
	}
	else
	{
		if(url)
		{
			LinkAjax.send(url, 'principal', 'carregando_principal');
		}
		if(document.getElementById('conteudoPopup'))
		{
			document.getElementById('conteudoPopup').style.display = '';
		}
		if(document.getElementById('layerMiolo_indique'))
		{
			document.getElementById('layerMiolo_indique').style.display = 'none';
		}
	}
}

Popup.prototype.visualizarFechar = function()
{
	document.getElementById('layerOpaco_popup').style.display = 'none';
	document.getElementById('layerGeral_popup').style.display = 'none';
}

Popup.prototype.visualizarIndique = function(url)
{
	this.popup_indique_visualizar = true;
	this.visualizar(url);
}

Popup.prototype.janela = function(url, width, heigth)
{
	jan = window.open("","janela","scrollbars=yes,resizable=no,location=no,directories=no,status=no,menubar=no,width="+width+"px,height="+heigth+"px,top=0,left=0");
	jan.focus();
	jan.location = url;
}

Popup.prototype.iframe = function(url)
{
	document.getElementById('layerMiolo_indique').style.display = 'none';
	var html  = '<div id="modulo_faq"><div id="galeria_faq">';
		html += '<div class="fechar" align="right" style="padding-right: 20px;">';
		html += '	<a onclick="Popup.visualizarFechar();" class="fechar">Fechar X</a>';
		html += '</div>';
		html += '<iframe scrolling="no" src="'+url+'" height="400px;" width="654px;" style="border: 0;">';
		html += '</iframe></div></div>';
	document.getElementById('principal').innerHTML = html;
	
	document.getElementById('layerGeral_popup').style.display = '';
	document.getElementById('layerOpaco_popup').style.display = '';
	
	var pagina = Diversos.getPageSize();
	
	document.getElementById('layerGeral_popup').style.height = pagina.pageHeight + 'px';
	document.getElementById('layerGeral_popup').style.width = pagina.pageWidth + 'px';
	
	document.getElementById('layerOpaco_popup').style.height = pagina.pageHeight + 'px';
	document.getElementById('layerOpaco_popup').style.width = pagina.pageWidth + 'px';
}

var Popup = new Popup();
