//
function janelaPopUp()
   {
	var objBody = $tag("body").item(0);
    //
	//=============================================
	// CRIA DIV "fImp" - Fundo pra area de impressao ter destaque
	$obj.create("div","fImp",objBody);
	$id("fImp").style.display="none";
	//
	//=============================================
	// CRIA DIV "janela_impressao" - Janela onde mostrara a area a ser impressa
	$obj.create("div","janela_impressao",objBody);
	$id("janela_impressao").style.display = "none";	
    //
	//=============================================
   }
//
function imprimeReal(strConteudo)
   {
    ProcessaMostrarArtigo('PopUpSlideFrame', strConteudo);
   }
//
function imprime(strIndice, intWidth, intHeight, perLeft, perTop)
   {
	scrollTo(0,0);
	telaH = document.body.offsetHeight;
	navH  = document.documentElement.clientHeight;
    //	
	if (navH > telaH)
		telaH = navH;
	telaH += "px";
    //	
	$id("fImp").style.height                 = telaH;
	$id("fImp").style.display                = 'block';
    //	
	cpoperTop                                = perTop;
    //	
	cpointWidth                              = intWidth + "px";
	cpointHeight                             = intHeight + "px";
    //
	var conteudo                             = 'http://' + strIndice;
    window.setTimeout("imprimeReal('" + conteudo + "')", 1000);
    //	
    ProcessaMostrarDiv('DataCimaFecharPopUpSlide', '', 'block');
    //	
	$id("janela_impressao").style.top        = cpoperTop;
	$id("janela_impressao").style.width      = cpointWidth;
	$id("janela_impressao").style.height     = cpointHeight;
	$id("janela_impressao").style.display    = 'block';
    //	
   }
//
function imprimeAjaxReal(strConteudo)
   {
    ProcessaMostrarArtigoAjax('PopUpSlideFrame', strConteudo);
   }
//
function imprimeAjax(strIndice, intWidth, intHeight, perLeft, perTop, strBackg, strComando, intTableW, intTableH)
   {
	scrollTo(0,0);
	telaH = document.body.offsetHeight;
	navH  = document.documentElement.clientHeight;
    //	
	if (navH > telaH)
		telaH = navH;
	telaH = (parseInt(telaH) + parseInt(intTableH)) + "px";
    //	
	$id("fImp").style.height                 = telaH;
	$id("fImp").style.display                = 'block';
    //	
	cpoperLeft                               = perLeft + "px";
	cpoperTop                                = perTop + "px";
    //	
	cpointWidth                              = intWidth + "px";
	cpointHeight                             = intHeight + "px";
    //
    window.setTimeout("imprimeAjaxReal('" + strIndice + "')", 1000);
    //	
    $id("janela_impressao").innerHTML        = "<table width='" + intWidth + "' class='slidefundo'" + strBackg + " border='0' cellpadding='0' cellspacing='0'><tr><td width='100%' valign='top'><center><table width='" + intTableW + "' border='0' cellpadding='0' cellspacing='0'><tr><td width='" + "100%" + "' valign='top'><div id='" + strComando + "'></div></td></tr></table></center></td></tr></table>";
    if (perLeft != 0)
       $id("janela_impressao").style.left    = cpoperLeft;
    if (perTop != 0)
	   { 
        $id("janela_impressao").style.top    = cpoperTop;
        if ((obj=MM_findObj('slidefaixafundo')) != null)
           $id("slidefaixafundo").style.top  = cpoperTop;
       }
	$id("janela_impressao").style.display    = 'block';
    //	
    ProcessaMostrarDiv('slidefaixafundo', '', 'block');
    //	
   }
