function ShowCopyright(firstyear) 
{
	var currentyear = "2009";
	if((firstyear!=currentyear) && firstyear!="") document.writeln('<span style="font:10px arial">Copyright &copy; ' + firstyear + '-'+ currentyear+' Vineeth Kaimal.</span>');
	else document.writeln('<span style="font:10px arial"> &nbsp;Copyright &copy; ' + currentyear + ' Vineeth Kaimal.</span>');
}