function openWindow(url){
  var win = document.getElementById("window");
  var win_cont = document.getElementById("win_cont");
  win.style.display="block";
  win_cont.innerHTML ="<iframe id='iframe1' name='iframe1' onLoad='upLoadFrame(window.iframe1.document.title)' scrolling='no' frameborder='0' src='"+url+"' width='100%' class='iframe_win' id='iframe_win' onchange='upLoadFrame()'></iframe>";
}

function upLoadFrame(ti){
  var title = document.getElementById("title");
  title.innerHTML=ti;
}

function closeWin(){
  var win = document.getElementById("window");
  win.style.display="none";
}

function go(url){
  var arr = new Array();
  arr = url.split('javascript:');
  if(arr.length>1)
  {
    eval(arr[1]);
  }else{
    location.href=url;
  }
}

var id_select_file=0;
function select_file(ob, where){
  if(id_select_file==ob.id){
    go(where);
  }
  else{
    if(id_select_file!=0){
        document.getElementById(id_select_file).style.backgroundColor="#FFF";
        document.getElementById(id_select_file).style.border="1px solid #FFF";
    }
	id_select_file=ob.id;
	ob.style.backgroundColor="#E0E0E0";
	ob.style.border="1px solid #fe9d05";
  }
}
function changeVersion(params, file, id){
  
  if(id=="") return;
  
  go(file+params+"&op=change_version&id_version="+id);  
}
function save(formulario){
  formulario.submit();
}
