﻿function AbrirJanela(path,nome)
{	
	window.open(path,nome,'location=no,top=20,left=20, directories=no, status=yes, menubar=no, scrollbars=1, resizable=yes, titlebar=no');
}
function JsExcluir(a)
{
    if (a==null)
    {
        if(confirm("Confirma a Exclusão?"))
        {
            return true;
        }
        else
        {
            return false;
        }
        return true;
    }
    else
    {
        if(confirm(a))
        {
            return true;
        }
        else
        {
            return false;
        }
        return true;
    }
}
function AlturaMenus()
{
    if(document.getElementById("Meio")!=null)
    {
        centro = document.getElementById("Meio");
        esquerda = document.getElementById("Esquerda");
        direita = document.getElementById("Direita");
        Idioma = document.getElementById("Idiomas");
        
        altura = new Array(3);
            
            altura[0] = direita.offsetHeight;
            altura[1] = esquerda.offsetHeight;
            altura[2] = centro.offsetHeight;
  
            altura.sort(comparar);
            if(altura[2]<500){altura[2]=500;}

         
        direita.style.height=(altura[2]-Idioma.offsetHeight)+"px";
        esquerda.style.height=(altura[2]+Idioma.offsetHeight)+"px";
        centro.style.height=(altura[2]-Idioma.offsetHeight)+"px";  
    }        
}
function comparar(a, b){
     return a - b;
}

function SWFViewer($arquivo,$altura,$largura,$id){
    document.writeln('    <object id="globalnav-object" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + $largura + '" height="' + $altura + '" id="' + $id + '" name="' + $id + '">');
    document.writeln('        <param name="movie" value="' + $arquivo + '" />');
    document.writeln('        <param name="FlashVars" value="loc=en_US&htmlApp=false&gatewayURL=gwurl" />');
    document.writeln('        <param name="bgcolor" value="#ffffff" />');
    document.writeln('        <param name="menu" value="false" />');
    document.writeln('        <param name="quality" value="high" />');
    document.writeln('        <param name="salign" value="tl" />');
    document.writeln('        <param name="scale" value="noscale" />');
    document.writeln('        <param name="wmode" value="transparent" />');
    document.writeln('        <embed id="globalnav-embed" src="' + $arquivo + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" flashvars="loc=en_US&htmlApp=false&gatewayURL=gwurl" bgcolor="#ffffff" menu="false" quality="high" salign="tl" scale="noscale" id="' + $id + '" width="' + $largura + '" height="' + $altura + '"></embed>');
    document.writeln('    </object>');
}