// Copyright Script File

function copy() 
{
  var time=new Date()  
  var yearcurrent=time.getFullYear()
  var yearinitial=''
  if (yearcurrent>2007) yearinitial='2007-'
  document.write('Copyright &copy;',(yearinitial),(yearcurrent),' Web Affiliates.&nbsp; All rights reserved.')
}

// Place the following within the head tag
// <script language="JavaScript" type="text/javascript" src="copy.js"></script>
//
// Place the following within the body tag at the desired location
// <script language="JavaScript" type="text/javascript">copy()</script>
