/*
	  Copyright (c) 2001 Moonstone Interactive, Inc.
      All Rights Reserved. No portion of this file, including but
      not limited to any associated code, documents or images, may be
      copied, retransmitted, reposted, duplicated or otherwise
      used without the express written permission of Moonstone Interactive, Inc.

*/		

function include_copyright(startyear) {

	var	blob="";
	var	today=new Date(); 
	var	thisyear = get_full_year(today);

	if (startyear < thisyear) 
	{
		blob += startyear + " - ";
	}

	blob += thisyear;
	return blob;
}


function get_full_year(d) { // d is a date object

	yr = d.getYear();

	if (yr < 1000) 
	{
	 	yr+=1900;
	}
	
	return yr;
}






