function startTime(){
				var today=new Date();
				var h=today.getHours();
				var m=today.getMinutes();
				var s=today.getSeconds();
				// add a zero in front of numbers<10
				
				var day= "" + today.getDate();
				var mes = "" + (today.getMonth()+1);
				var year = today.getYear();
				
				var month = new Array();
					month[0] = "Enero";
					month[1] = "Febrero";
					month[2] = "Marzo"; 
					month[3] = "Abril"; 
					month[4] = "Mayo";
					month[5] = "Junio";
					month[6] = "Julio"; 
					month[7] = "Agosto"; 
					month[8] = "Septiembre";
					month[9] = "Octubre";
					month[10] = "Noviembre";
					month[11] = "Diciembre";		
				
				if(mes.length == 1){
//				 month = "0" + (today.getMonth()+1);
				 mes = month[today.getMonth()];
				}
				if(day.length == 1){
				day = "0"+today.getDate();
				}
				
				m=checkTime(m);
				s=checkTime(s);
				document.getElementById('logo').innerHTML = day + "/"+ mes + "/" + year + " <br> " +h+":"+m+":"+s + " hrs";
				t=setTimeout('startTime()',500);
			}
		
			function checkTime(i){
				if (i<10){
				  i="0" + i;
				}
				return i;
			}		
			document.onclick = disable;	
						
			/*************Validacion de click contrario***************/
			document.onmousedown = disable;
			function disable(){
				if (event.button == 2 || event.button == 3 || event.button == 6 || event.button == 7){
					alert("La funcionalidad del boton derecho se ha deshabilitado")
				}else{
					return;
				}
			}
			/*********FIN Validacion de click contrario***************/				


			function ver(){
				var x = document.getElementById("mapa"); 
				window.open(x.src)
			}
			
			function mouseOver(source){
				var x = document.getElementById(source.toLowerCase()); 
					x.src = "images/"+ source +"_on.gif";
					if(x.src != "images/"+ source +"_off.gif"){
						x.src = "../images/"+ source +"_on.gif";
					}
					
			}
			
			function mouseOut(source){
				var x = document.getElementById(source.toLowerCase()); 
					x.src = "images/" + source +"_off.gif";
					if(x.src != "images/"+ source +"_on.gif"){
						x.src = "../images/"+ source +"_off.gif";
					}
			}

						
			function ver(foto){
				var y=document.getElementById("new");
				if(cadena == "Outsourcing en TI"){
					y.innerHTML = "<img src=\"./Pictures/" + foto + "\" align=\"center\" width=\"100%\"\> ";
				}
			}
			
			function cursor(event){
				document.getElementById('trail').style.visibility="visible";
				document.getElementById('trail').style.position="absolute";
				document.getElementById('trail').style.left=event.clientX+10;
				document.getElementById('trail').style.top=event.clientY;
			}
