//
// Copyright year can be configured here. 
// Value setting here will be reflected across Assist Views ( Sign-In , Sign-up , Tour and all-module views).
//
var copyright_year = "2009";

//
// Do not do any modification in this function as this is being called from the 
// mentioned views to set the copyright info at the footer
//
function showCopyright(divId)
{
    if(divId)
    {
        if(document.getElementById(divId))
        {
            document.getElementById(divId).innerHTML = "Copyright &copy;"+copyright_year+" Entrepreneur.com  All rights reserved."; 
        }
    }
}
