function add()
{
	/////aggiungi a preferiti 2.0
	try{window.external.AddFavorite(window.location.href, document.title);return;}catch(e){}
	try{window.sidebar.addPanel(document.title, window.location.href, "");return;}catch(e){}
}

function segnala(lang){
/////segnala ad un amico
	lang = (!lang) ? 'ita' : lang;
	var ogg = (lang == 'ita') ? 'Da%20Vedere!' : 'Take%20a%20look%20at%20this';
	var corpo = (lang == 'ita') ? 'Visita%20questo%20sito:%20http://www.ariespace.com/' : 'Hi,%20You%20may%20want%20to%20check%20out%20this%20site:%20http://www.ariespace.com/';
	var ms = "mailto:?subject="+ogg+"&body="+corpo;
	location.href = ms;
}

function changeHeight(iframe)
      {
        try
        {
          var innerDoc = (iframe.contentDocument) ? iframe.contentDocument : iframe.contentWindow.document;
          if (innerDoc.body.offsetHeight) //ns6 syntax
          {
             iframe.height = innerDoc.body.offsetHeight;
          }
          else if (iframe.Document && iframe.Document.body.scrollHeight) //ie5+ syntax
          {
             iframe.height = iframe.Document.body.scrollHeight;
          }
        }
        catch(err)
        {
         /* alert(err.message);*/
        }
      }	  
	  
 function CaricaFrame(page)
      {
      parent.frames.frame.location.href=page;
      }	  
