﻿// JScript File
function upload_LimpaCampo(quem){
    document.getElementById(quem).value = '';
    if(document.getElementById('crop')!=null)
    {
        document.getElementById('crop').style.display = 'none';
    }
    //RemoveArquivoFisico(quem);
}

function previewUpload(quem)
{
    var caminho = FunctionAjax.DevolveDiretorioSite().value+"uinet/Entrada/imagem.aspx?imagem=";
    window.open(caminho+quem,'UiNet','resizable=1,width=400,height=400,left=200,top=200');
}

function upload_MudaValor(multi, retorno){
    try
    {
	    document.getElementById(retorno).value = FunctionAjax.RetornaSession().value;
	    if (multi==true || multi=="true")
	    {
		    var arr = new Array();
		    arr = document.getElementById(retorno).value.split(';');
		    call_backUpload(arr);
	        document.getElementById(retorno).value = '';
	    }
	    else{
	        if(document.getElementById('crop')!=null)
	        {
	            document.getElementById('crop').style.display = '';
	        }
	    }
	}
	finally
	{
	    FunctionAjax.DestroiSession();
	}
}



