/* FORM: validation */
		$("#temp_hire").validate({
			submitHandler: function(form) {
				form.submit();
			}
		});
				
		/* ================================================================================== 
	        MAKE CHECKBOXES, RADIOS & SELECTS READONLY 			
		/* ================================================================================ */
		$(':checkbox[readonly]').click(function(){
            return false;
        });
		$(':checkbox[readonly]:not(:checked)').prop('disabled', true);
        $(':radio[readonly]:not(:checked)').prop('disabled', true);
       
        $('option:not(:selected)').prop('disabled', true);
    </script> 
    
	</body>
</html>
		 
<?php 
} catch (Exception $e) {
    Utilities::msg_alert($e->getMessage(), "");
    Utilities::close();
    //closes window opened by alert
    exit;
}
?>