function VerNoticia(ID){ var winl = 300; var wint = 200; winprops = 'height=335,width=510,top='+wint+',left='+winl+','; winprops += 'resizable=no,menubar=no,location=no,toolbar=no,statusbar=no,scrollbars=no,directories=no'; window.open('/grc/gral.nsf/vwALL/'+ID,'News', winprops); } function Tonos(ID, tipo, muestra, modelo){ var winl = 200; var wint = 200; if (muestra == "E") winprops = 'height=101,width=250,top='+wint+',left='+winl+','; else winprops = 'height=340,width=482,top='+wint+',left='+winl+','; winprops += 'resizable=no,menubar=no,location=no,toolbar=no,status=no,scrollbars=no,directories=no'; window.open('/movil/grcmovil.nsf/vwALL/'+ID+'?OpenDocument&muestra='+muestra+'&tipo='+tipo+'&idmod='+modelo,'Tonos', winprops); } function FechaP(){ var now = new Date(); var days = new Array( 'Domingo','Lunes','Martes', 'Miércoles','Jueves','Viernes','Sábado'); var months = new Array( 'enero','febrero','marzo','abril','mayo', 'junio','julio','agosto','septiembre','octubre', 'noviembre','diciembre'); // var date = ((now.getDate()<10) ? "0" : "")+ now.getDate(); var date = now.getDate(); function fourdigits(number) { return (number < 1000) ? number + 1900 : number;} today = "Bienvenidos, " + days[now.getDay()] + " " + date + " de " + months[now.getMonth()] + " de " + (fourdigits(now.getYear())); document.write(today); }