// JavaScript Document

function writeCopyright(pHolder,pStartYear){
	var theCopyRight = "Copyright &copy; "+pHolder;
	var currentYear = new Date().getFullYear();
	if(pStartYear < currentYear){
		theCopyRight = theCopyRight+", "+ pStartYear+"-"+currentYear+". All Rights reserved!";
	}else{
		theCopyRight = theCopyRight+", "+ pStartYear+". All Rights reserved!";
	}
	return theCopyRight;
}