
<!-- hide script from old browsers

	function trim(str) { 
	    // getting rid of leading spaces 
	    while (str.substring(0,1) == ' ') 
	        str = str.substring(1, str.length);

	    // getting rid of trailing spaces 
	    while (str.substring(str.length-1,str.length) == ' ')
	        str = str.substring(0, str.length-1);

	   return str;
	} 

	function validateString(string) 
	{
	   if (!string) 
			return true;
	   var Chars = " 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZàèàòù'";
	   for (var i = 0; i < string.length; i++) {
	       if (Chars.indexOf(string.charAt(i)) == -1)
	          return false;
	    }
	    return true;
	} 

	function openWinZoom(theURL,iWidth,iHeight) {
	  
	  if (iWidth == -1) iWidth = 680;	  
	  if (iHeight == -1) iHeight = 500;
	  	  
	  newWin = window.open(theURL,'zoom','width=' + iWidth.toString() +',height=' + iHeight.toString() + ',directories=no,location=no,resizable=yes,menubar=yes,scrollbars=yes,status=yes,toolbar=no');
	  newWin.focus();
	  
	}


//-->
