			//  Creates copyright notice   
			function getCopyrightNotice(YearCreated)
			{
				var Author="lbwebslive";
				var YearCreated;
				var Notice;
				today=new Date();
				CurrentYear=today.getFullYear();
				if (CurrentYear == YearCreated) { 
					Notice=("Copyright © " + YearCreated  + " " + Author);}
				else
					{Notice=("Copyright © " + YearCreated + "-" + CurrentYear + " " + Author);}
				return Notice;
			}
			
		   <!-- Copies pic url to clipboard when thumbnail is clicked    (IE compatible only) // --> 	
			<!--
				function ClipBoard(thepicname) 
				{
				var thepicname;
				thepicname="[img]" +  thepicname + "[/img]";
				holdtext.innerText=thepicname;
				Copied=holdtext.createTextRange();
				Copied.execCommand("Copy");
				}
				
				function changeScrollbarColor(C){
					if (document.all){
						document.body.style.scrollbarBaseColor=C
					}   
				}
			// -->