// Copyright Sample Script File



function copyright() {
	copyright=new Date();
update=copyright.getFullYear();
  document.write('<div align="center">')
  //document.write('(C)1997-2011 Polkapixel<BR>')
  document.write("Copyright 1997-"+ update + " Polkapixel ");
  //(document.write('For more information, email <A HREF="mailto:mm@polkapixel.com">mm@polkapixel.com</A>')
   document.write('</div>')
}
