// JavaScript Document

	function controls(){
		var ok=true;
		if(document.search.fieldSearch.value.length==0){
			alert('Immettere un dato per la ricerca');
			ok=false;
		}
		if(ok){
			document.search.action="search.asp";
			document.search.submit();
		}
	}

	function viewGlox(strVoce){
			glox=window.open("glossario.html",'Glossario','width=600,height=450,scrollbars=yes');
			eval('glox.location.href="glossario.html' + strVoce + '"');
	}
	function openWinImg(theURL,winName,features) { 
  		winImg=window.open(theURL,winName,features);
	}
	
	function openPop(theURL,winName,features) { 
  		winPop=window.open(theURL,winName,features);
	}
	
	function openNews(newID){
			strURLCV='showNew.asp?newID=' + newID;
			//alert('strURLCV->' + strURLCV);
			res=window.open(strURLCV,'News','width=600,height=450,scrollbars=yes');
			//res=window.open("contentView.asp?pageID=1010&subcontentID=0&strWord=Amoco",'Content wiever','width=600,height=450,scrollbars=yes');
	}


