  function rollOver(idImage){
  document.getElementById(idImage).src='img/'+ idImage + '_h.gif';
 
  }
  
  function rollOut(idImage){
  document.getElementById(idImage).src='img/'+ idImage + '.gif';
 
  }
  
  function frameSurce (newSurce) {
    document.getElementById('zodiacContent').src= newSurce + '.html';
    
    }
  
  function richiama_form(){
		 window.open('form_distributori.html','_new','toolbar=no,scrollbars=no,location=no,directories=no,width=400,height=400');
		 }
	
	function richiama_zodiaco(){
		 window.open('zodiaco.html','_new','toolbar=no,scrollbars=no,location=no,directories=no,width=600,height=600,left=0,top=0');
		 }
	function changeFrame(indexFrame,section){
    
        frameUrl="iframe/" +  indexFrame + ".html";
    
    
     document.getElementById('segno').src=(frameUrl);
      
  } 
  
  
  function showHideFullImage(){
  	
  	var myBox =  document.getElementById('fullImage');
  	/*
  	if ( myBox == null)
    return;
  	
  	var timeCount = 1;
  	*/
  	if( myBox.style.display == 'none')
  	{
  		//myBox.filters.alpha.opacity = '0';
  		document.getElementById('fullImage').style.display = 'block';	
  		/*
  		for( i = 1; i <= 100; i+=1 )
      setTimeout( "document.getElementById( 'fullImage' ).filters.alpha.opacity = '" + i + "';", (timeCount++) * 5 );
      */
  	}
  	
  	else
  		{
  		 //myBox.filters.alpha.opacity = '100';	
  		document.getElementById('fullImage').style.display = 'none';	
  		/*
  		for( i = 99; i >= 1; i-=1 )
    	
      setTimeout( "document.getElementById( 'tblMenuVr' ).filters.alpha.opacity = '" + i + "';", (timeCount++) * 5 );
     */
    
  		}
  	
  }
  
  
