      // Popup window small
      function newPopupS(url) {
      popupWindow = window.open(
      url,'popUpWindow','height=300,width=600,left=50,top=50,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
      }

      // Popup window LARGE
      function newPopupL(url) {
      popupWindow = window.open(
      url,'popUpWindow','height=500,width=800,left=50,top=50,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
      }
	  
	  // Popup window New GMap
      function newPopupG(url) {
      popupWindow = window.open(
      url,'popUpWindow','height=640,width=800,left=50,top=50,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no')
      }
	  
	  // Popup window Chart
      function newPopupC(url) {
      popupWindow = window.open(
      url,'popUpWindow','height=550,width=950,left=50,top=50,resizable=yes,scrollbars=yes,toolbar=no,menubar=no,location=no,directories=no,status=no')
      }	  