				function closeDivPATO(nameDIV, DivId){
				var div = document.getElementById(nameDIV);
					div.innerHTML = '';
					div.style.display = 'none';
					document.getElementById('infoImgDivA' + DivId).src = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/include/img/ico_flecha.gif';
			}

			function showContactInfoPATO(DivId) {
				var div = document.getElementById('showInfoDiv' + DivId);
				if(div.style.display == 'none'){
					div.style.display = 'block';
					div.innerHTML = 'Cargando..';
					getContactInfoPATO(DivId);
				}
				else {
					div.style.display = 'none';
				}
			}

			 function getContactInfoPATO(DivId) {
     
			var url = '';
			//alert(DivId);
			switch(DivId){
			 case 1:
			  url = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/muestra-noticias.php';
			  break;
			 case 2:
			  url = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/muestra-articulos.php';
			  break;
			 case 3:
			  url = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/muestra-entrevistas.php';
			  break;
			 case 4:
			  url = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/muestra-inspiracion.php';
			  break;
			 default:
			  url = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/muestra-noticias.php';
			  break;
			  
		   }
			  //alert('llamo a la funcion');
			var xmlHttpWrapper = new XMLHTTPWrapper();
			 xmlHttpWrapper.callURL(url, onGetContactInfoReturnPATO, DivId);
			
			//Necessario para o log.
			
		   }

			/*
			* onGetContactInfoReturn
			*/
			function onGetContactInfoReturnPATO(text, DivId) {
				//alert(text);
				var divHiddenSiteURL = document.getElementById('divHiddenSiteURL' + DivId);
				var showInfoDiv = document.getElementById('showInfoDiv' + DivId);
				
				if(showInfoDiv != null) {
					//showInfoDiv.innerHTML = (divHiddenSiteURL!=null?divHiddenSiteURL.innerHTML:'') + text;
					showInfoDiv.innerHTML = text;
				}
			}
			
			function closeAllDivPATO(DivId){
				//inhabilita(advertise)
				closeDivPATO('showInfoDiv' + DivId, DivId);
			}
			function showContactoPATO(DivId){
				var str = document.getElementById('infoImgDivA' + DivId).src;
				if (str.indexOf("ico_flecha_dw.gif") == -1){ // Esta Cerrada
					closeDivPATO('showInfoDiv' + DivId, DivId);
					var div = document.getElementById('showInfoDiv' + DivId);
					if(div.style.display == 'none'){
						document.getElementById('infoImgDivA' + DivId).src = 'http://www.zappinglatam.com/wp-content/themes/zapping2009/include/img/ico_flecha_dw.gif';
					}
					showContactInfoPATO(DivId);
				}
				else{
					closeAllDivPATO(DivId);
				}
				//return false;
			}
