/*///////////////////////////////////////////////////////////////
/   ECS USA (2005) - This print script   Dee Elliott-Wakefield  /
/////////////////////////////////////////////////////////////////
*/
function printWindow(){
   browserVer = parseInt(navigator.appVersion)
   if (browserVer >= 4) window.print()
  else 
      alert("Sorry, your browser doesn't support this feature.");
}


