/*
script: Javascript
developer: Ramsin S.
modified on: June 1st 2009

purpose: Updating copyright information by retrieving date on visitor's end

*/

copyright_stmt = "ICDC College Online &copy;  1995- ";

function writeCopyright()
{
  document.write(copyright_stmt, new Date().getFullYear(), " | All Rights Reserved.");
}



