﻿
    function printThisPage()
       {
              window.print();
       }
       
       function openPopup(theURL, width, height) { 
        window.open(theURL,"_new","scrollbars=yes,resizable=yes,width=" + width + ",height=" + height);
    }

    function toProperCase(s) {
        return s.toLowerCase().replace(/^(.)|\s(.)/g,
          function($1) { return $1.toUpperCase(); });
    }
