/*
	@autor: Grupo de Programacion Icfes
	Universidad de Pamplona.
	Pamplona (Norte de Santander). Colombia.
	Junio 09 del 2004
	popup.js
*/
function maximizar(){
var NS = (navigator.appName == "Netscape" && parseInt(navigator.appVersion, 10) >= 5)? true : false;
var IE = (navigator.appVersion.search(/MSIE/) != -1)? true : false;

window.moveTo(0,0);
if (document.all) {
top.window.resizeTo(screen.availWidth,screen.availHeight);
}
else if (document.layers||document.getElementById) {
if (top.window.outerHeight<screen.availHeight||top.window.outerWidth<screen.availWidth){
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}

}

function ventanaMaxima(pagina){
  var width=screen.availWidth;
  var height=screen.availHeight;
  var left = 0;
  var top = 0;

  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,"apliacaion", styleStr);
}

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 message(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 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 mensaje(titulo, mensaje,nomContex){
  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 ="/"+nomContex+"/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);
}

