function statusbar()

	{

	todaysdate = new Date();
	
	yy = todaysdate.getYear();
	
	if (yy < 2000)
	
		{
		
			yy = yy + 1900;
			
		}
	
	var copyright_message = 'Copyright '+yy+', Roswell Park Cancer Institute';

	window.status = copyright_message;

	}