/* Javascript Document */
/* JS File for Holaalmundo website developed by Anoop Systems*/
function agregar(){
   if ((navigator.appName=="Microsoft Internet Explorer") && 
         (parseInt(navigator.appVersion)>=4)) {
      var url="http://www.holaalmundo.com"; 
      var titulo="Hola al Mundo: Regalos de empresa";
      window.external.AddFavorite(url,titulo);
   } else { 
      if(navigator.appName == "Netscape") 
         alert("Presione Crtl+D para agregar este sitio en sus Favoritos"); 
   }
} 

function fecha(langu){
	var s_date = new Date();
	switch (langu){
	case 1:
		selectMonth = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre");
	}
	var setAny = s_date.getYear();
	var BName = navigator.appName;
	if(BName == "Netscape"){ var setAny = s_date.getYear() + 1900; }
	//document.write(s_date.getDate() + " de " + selectMonth[s_date.getMonth()] + " de " + setAny); 
	document.write(s_date.getDate() + " " + selectMonth[s_date.getMonth()] + " " + setAny); 
}
function imprimir(){
	window.print();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}