
<!-- hide script from old browsers

	function openWinZoom(theURL,iWidth,iHeight,bFullScreen) {
	  
	  var sFullScreen = "";
	  
	  if (iWidth == -1) iWidth = 580;	  
	  if (iHeight == -1) iHeight = 400;
	  if (bFullScreen == true) sFullScreen = ",fullscreen=yes";
	  
	  newWin = window.open(theURL,'zoom','width=' + iWidth.toString() + ',height=' + iHeight.toString() + ',directories=no,location=no,resizable=yes,menubar=no,scrollbars=yes,status=no,toolbar=no' + sFullScreen);
	  newWin.focus();
	  
	}


	function display(message) { 
	
		var risposta = window.confirm(message);
		return risposta;
		
	} 

//-->

