// JavaScript Document
//CAIW: Funcion para abrir popup de acceso al sistema
function ingresarSistema()
{

//var myURL = "http://www.compraspublicas.gob.ec/ProcesoContratacion/app/webroot/compras/index.php?swin=XNNLF";
  var myURL = "http://www.compraspublicas.gob.ec/ProcesoContratacion/compras/";
  var iMyWidth = window.screen.width;
  var iMyHeight = window.screen.height;
  var myBars ='directories=1,location=1,menubar=1,status=1,titlebar=1,toolbar=1,scrollbars=1,resizable=1,fullscreen=1';
  var myOptions = 'width='+iMyWidth+',height='+iMyHeight;
  var myFeatures = myBars + ',' + myOptions;
  var  win2=window.open(myURL,"winSystem",myFeatures)
   win2.focus();
}

