		<!--
		
			
			function get_base_url()
			{
				return 'http://arianna.libero.it';
			}


			function do_search(n) {
				var b = "http://arianna.libero.it/";
				var a = new Array("","media/index_img.html","media/index_video.html","usenet/","media/index.html","hpprodotti.html","news/index.html");
				window.location = b + a[n] + "?" + document.search.query.value; 
			}
			
			function urlStringEscape(myString)
			{
				myString = escape(myString);
				while (myString.indexOf("+")>-1){myString = myString.replace("+","%2B")};
				while (myString.indexOf("@")>-1){myString = myString.replace("@","%40")};
				while (myString.indexOf("/")>-1){myString = myString.replace("/","%2F")};
				return myString;				
			}
			
			function check_path(pref)
			{
				if (pref=="categoria")
				{
					document.search.where[0].checked=true;
				}
				else
					if (pref=="all")
					{ 
						document.search.where[1].checked=true;
					}

				var outputString=get_base_url() + "/search/abin/catalogo";
				if (document.search.query.value != "" && document.search.query.value != null)
				{
					outputString += "?query=" + encodeURIComponent(document.search.query.value);
					outputString += "&is_home=" + document.search.is_home.value;
					
					
					if (document.search.is_home.value == 0)
					{
						//Se non sono in home page
						if (document.search.where[0].checked)
						{
							//Se devo cercare solo in una data categoria
							outputString += "&where=0";
							document.search.path_cat.value = document.temp_path_form.temp_path_cat.value;
						}
						else
						{
							//Se devo cercare in tutte le categorie
							outputString += "&where=1";
							document.search.path_cat.value = "Italiano";
						}
					}
					else
					{
						//Se sono in home page
						outputString += "&where=" + document.search.where.value;
						outputString += "&numPage=" + document.search.numPage.value;
						outputString += "&st=" + document.search.st.value;
					}
					
					//Path categoria
					outputString += "&path_cat=" + urlStringEscape(document.search.path_cat.value);
					location.href = outputString;
				}
			}
			
			function go(type,e){
				var baseurl='http://arianna.libero.it';
				if (!e) var e = window.event;
				e.cancelBubble = true;
				if (e.stopPropagation) e.stopPropagation();
				q=escape(document.search.query.value).replace(/\+/g,"%2b");
				if (q == '') {return true;}
				var idsrc;
				var iddest;
				var urldest;
				idsrc='107';
				if (type == 'mp3') {
					iddest='12';
					urldest =baseurl+'/media/cgi-bin/media.pl?query='+q;
				}
				else if (type == 'img') {
					iddest='8';
					urldest=baseurl+'/media/cgi-bin/media.pl?query='+q+'&categoria=httpimg';
				}
				else if (type == 'video') {
					iddest='9';
					urldest=baseurl+'/media/cgi-bin/media.pl?query='+q+'&categoria=httpvideo';
				}
				else if (type == 'web') {
					iddest='4';
					urldest='http://arianna.libero.it/search/abin/integrata.cgi?query='+q;
				}
				else if (type == 'usenet') {
					iddest='6';
					urldest='http://arianna.libero.it/usenet/cgi-bin/SearchNews.epl?KEYWORDS='+q+'&TABLES=RECENT_MSG';
				}
				else if (type == 'cat') {
					iddest='7';
					urldest='http://arianna.libero.it/search/abin/catalogo?path_cat=Root&where=1&query='+q;
				}
				else if (type == 'blog') {
					iddest='17';
					urldest='http://arianna.libero.it/blog/search/abin/blog?query='+q;
				}
				else if (type == 'news') {
					iddest='15';
					urldest='http://arianna.libero.it/news/search/abin/news?tipo=d&query='+q;
				}
				else if (type == 'prodotti') {
					iddest='22';
					urldest='http://shopping.libero.it/sitesearch/search.jsp?partner=libero&catId=100164013&da=arianna&kpartnerid=8913027&siteSearchQuery='+q;
				}
				urlescaped=encodeURIComponent(urldest);
				location.href='http://arianna.libero.it/search/abin/ltrace_new?id=700&ct='+idsrc+'&wb='+iddest+'&uc='+urlescaped;
				return false;
			}
		//-->
