<!-- copyright.js file
// *************************************************************************************//
//  This script enters the copyright statement on the web pages. 
//  Note that it gets the year from the system so that you should never
//  have to change the copyright unless there is a major statement change.
//
//	Script created by:	Dianne Blake
//     updated on:		July 27, 2005
//	updated by:		Dianne Blake
//     why updated:   	new script to handle copyright on web pages
//			 	http://dianneblake.com
//			 	writer@dianneblake.com
// *************************************************************************************//

// *************************************************************************************//
//  First, get the year to place in the copyright statement
//  Then write the text to the copyright div.
// *************************************************************************************//
function copyright(){
var mydate=new Date()
var year=mydate.getYear()
if (year < 1000) year+=1900;
document.write('<br> <a href="http://www.sandicor.com/Sandicor-privacy-policy.html">Privacy Policy</a>');
document.write('<br>&copy;2002-' + year + ' Sandicor, Inc. All rights reserved.');
document.write('<br>5414 Oberlin Drive, Suite 150, San Diego, CA 92121');
document.write('<br>(858) 622-6200 or (888) 385-0800');
document.write('<br>(858) 622-6222 fax');
document.write('<br> <a href="mailto:webmaster@sandicor.com">webmaster@sandicor.com</a>');
}
copyright()			    // Run this function to create enter the date
// End -->