var sFeatures="";

function fnSetValues(){
   var iHeight=700;
   var iWidth=600;
  sFeatures="dialogWidth: " + iWidth + "px;" +
						"dialogHeight: " + iHeight + "px;";
   
   return sFeatures;
}

function popUpEdTextos(archivo, clave,ruta,idioma)
{
	  strPar="modificar=s&literal=" + clave +
		  "&archivo=" + archivo+"&idioma="+idioma;
	  fnSetValues();
	  strApp=ruta +"/editar/index.aspx?" + strPar;
  	
	  popup(strApp, 850, 600, "idioma")
    event.returnValue=false;
	  return false;
	  
	
	//var sw=window.showModalDialog(strApp, "", 
      //sFeatures);
  
  //if (sw == "si")
		//location.reload();
	
}


controlPress = false;

function edKeyDown(e)
{
	controlPress=true;
//	alert(controlPress);
}


function edKeyUp(e)
{
	controlPress=false;
  //alert(controlPress);
}


self.onkeydown=edKeyDown;
self.onkeyup=edKeyUp;
