		function irUrl(d)
		{
			switch(d)
			{
				case 'Tw': 
					window.open("http://twitter.com/SICSolutions", this.target); 
					break;
				case 'In': 	
					window.open("http://es.linkedin.com/pub/SICSolutions/18/a12/b5", this.target); 
					break;
				case 'Fa': 	
					window.open("http://www.facebook.com/pages/SIC-Solutions/217342561138", this.target); 
					break;
				case 'Pw': 
				case 'pw':
					window.location.href="/es/disenoweb.html";
					break;
				case 'To':
				case 'to':
					window.location.href="/es/mantenimientohardware.html";
					break;					
				case 'Sf':
				case 'sf':
					window.location.href="/es/software.html";
					break;
				case 'Im':
				case 'im':
					window.location.href="/es/imagencorporativa.html";
					break;
				case 'concocenos':
					document.getElementById('dcompabus').style.display = '';
					document.getElementById('dcompint').style.display = 'none';
					document.getElementById('dcompwus').style.display = 'none';
					break;
				case 'internet':
					document.getElementById('dcompabus').style.display = 'none';
					document.getElementById('dcompint').style.display = '';
					document.getElementById('dcompwus').style.display = 'none';
					break;
				case 'nosotros':
					document.getElementById('dcompabus').style.display = 'none';
					document.getElementById('dcompint').style.display = 'none';
					document.getElementById('dcompwus').style.display = '';
					break;
				default:
					alert(d);
					
			}
		}
		
		function SendForm()
					{
						var obj = document.getElementById('form1');
						if(obj.name.value=='')
						{
							alert('El campo nombre no puede estar vacio');
							return;
						}
						if(obj.phone.value=='' && obj.email.value=='')
						{
							alert('Debe facilitarnos un número de teléfono de contacto o una dirección de correo electrónico');
								return;
						}
						if(obj.text.value=='')
						{
							alert('Debe indicarnos el motivo de su consulta');
							return;
						}
						return obj.submit();
					}
		
		function changeport(j)
				{
					for(i=0;i<np;i++)
					{
						d = document.getElementById('port'+i);
						if(j==i)
						{
							d.style.display='';
						}else{
							d.style.display='none';
						}
					}
				}
		
		
		
			
		
