// -----------------------------------------
// Scripts para Abrir Ventanas en el Portal
// -----------------------------------------

function bNavegador() {
  if( navigator.appName )
  {
    if( navigator.appName == "Microsoft Internet Explorer")  return 1;
    if( navigator.appName == "Netscape")  return 2;
  }
  return 0;
}
	
var contador = 1;

function AbreVentana(ventana){
 var w=640, h=480;
  var windowName = new String( contador );
  windowName = "v" + windowName;
  var x = bNavegador();	
  if (window.screen && window.screen.availHeight) {
    h = window.screen.availHeight - 63; // 63
    if( x==2 ) h = h - 11;
    w = window.screen.availWidth - 4;
  }

if (ventana==1)
  window.open("contacto.php?valuee=1", windowName, "status=yes,resizable=yes,toolbar=no,scrollbars=no,top=0,left=0,width=" + 330 + ",height=" + 350, 1 );
if (ventana==3)
  window.open("http://www.udch.edu.pe/fiis/intranet/index1.php?valuee=5", windowName, "status=yes,resizable=yes,toolbar=no,scrollbars=yes,top=0,left=0,width=" + w + ",height=" + h, 1 );
if (ventana==2)
  window.open("index1.php?valuee=1&nicka=" + nick + "&password=" + pass + "", windowName, "status=yes,resizable=yes,toolbar=no,scrollbars=yes,top=0,left=0,width=" + w + ",height=" + h, 1 );
contador = contador + 1;
if (ventana==5)
  window.open("http://www.udch.edu.pe/newsite/imagenes/UDCH11junio.jpg", windowName, "status=yes,resizable=yes,toolbar=no,scrollbars=yes,top=0,left=0,width=" + 356 + ",height=" + 600, 1 );
if (ventana==35)
  window.open("http://www.udch.edu.pe/blab/index.php", windowName, "status=yes,resizable=yes,toolbar=no,scrollbars=yes,top=0,left=0,width=" + w + ",height=" + h, 1 );
}
