function popUp(URL,r,w,h){
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL,'"+id+"','toolbar=no,scrollbars=yes,location=no,statusbar=no,status=no,menubar=no,resizable="+r+",width="+w+",height="+h+",left=150,top= 25');");
}

function popUp2(URL,r,w,h){
	//var izq = (screen.availWidth - 800) / 2;
	//var top = (screen.availHeight - 600) / 2;
	//window.open(URL, 'mienlace', 'toolbar=no,scrollbars=yes,location=no,statusbar=no,status=no,menubar=no,resizable=" + r + ",width=" + w + ",height=" + h + ",left = 150,top = 25')*/
	//window.open(URL,'CurriculumWord','top='+top+',left='+izq+',height=400,width=750,resizable=yes,scrollbars=0');
	window.open(URL,'SENAMHI','height='+h+',width='+w+',resizable='+r+',scrollbars=0');
}


//popUp de la Intranet
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 intranet()
{
  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 - 95; // 63
    if( x==2 ) h = h - 11;
    w = window.screen.availWidth - 4;
  }
  window.open("intranet/", windowName,
   "status=yes,resizable=yes,toolbar=yes,scrollbars=yes,top=0,left=0,width=" + w + ",height=" + h, 1 );
}
//--- Fin popUp de la Intranet