/**
 * Due to browsers not reloading the page on back button click
 * we add an empty method to the unload function that will force
 * a page refresh when you click the back button.
 * 
 * @author Michael T. Smith (msmith@mcdpartners.com)
 */
history.navigationMode = 'compatible';
window.onunload = function() { return true; };
