function initArray()
{
this.length = initArray.arguments.length
for (var i=0;i<this.length;i++)
this[i+1] = initArray.arguments[i]
} // end initArray.

function ftr()
 {
var DOWArray = new initArray("sunday", "monday", "tuesday", "wednesday", "thursday", "friday", "saturday");
var MOYArray = new initArray("january", "february", "march", "april", "may", "june", "july", "august","september", "october", "november", "december");
var LastModDate = new Date(document.lastModified);

document.write("<HR><center><FONT SIZE=1>International Scientific Network for");
document.write(" Advanced Materials and Structures, IPPT, ");
document.write("Polish Academy of Sciences<BR>");
document.write("webmaster:<a nohref=mailto:-@ippt.gov.pl>"); document.write("WebmasterMail</a> ; ");
document.write("Revision date:");
document.write(DOWArray[(LastModDate.getDay()+1)],", ");
document.write(LastModDate.getDate()," ");
document.write(MOYArray[(LastModDate.getMonth()+1)]," ");
if(navigator.appName!="Netscape")
 document.write((LastModDate.getYear()));
 else
  document.write((1900+LastModDate.getYear()));
document.write("</FONT></center>");
 }
