/*
	@autor: Grupo de Programacion Icfes
	Universidad de Pamplona.
	Pamplona (Norte de Santander). Colombia.
	Junio 09 del 2004
	popup.js
*/
function ventana(pagina, ancho, alto){
  var width=ancho, height=alto;
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=YES,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  window.open(pagina,"busqueda", styleStr);
}

function mensaje(titulo, mensaje){
  var width="407", height="193";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var url ="../alert.jsp?titulo=" + titulo + "&alerta=" + mensaje;
  window.open(url,"mansaje", styleStr);
}

function confirma(titulo,mensaje,form){
  var width="407", height="193";
  var left = (screen.width/2) - width/2;
  var top = (screen.height/2) - height/2;

  var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
  var url ="../confirm.jsp?titulo=" + titulo + "&alerta=" + mensaje + "&form=" + form;
  window.open(url,"confirma", styleStr);
}


