/**
 * COMMON.JS - COMMON JAVASCRIPT FUNCTION LIBRARY
 *
 * Author: Thomas Knierim
 * Contact: webmaster@thebigview.com
 * Implemented: 26-Aug-2003
 *
 * All Rights Reserved.
 * Unauthorized use, duplication and distribution prohibited.
 */

function printyear() 
{
  var now = new Date();
  var year = now.getYear();
  
  year = (year < 1000) ? year + 1900 : year;
  document.write(year);
}
