function getArchiveCount() {
	return archivesCount ;
}
function getArchiveName(i) {
	return archives[i*2+1];
}
function getArchiveDate(i) {
	return archives[i*2];
}
function writeArchives(p) {
	d=document ;
	for (i=getArchiveCount()-1;i>=0;i--) {
		l=p.replace("#name#",getArchiveName(i)) ;
		l=l.replace("#date#",getArchiveDate(i)) ;
		d.write(l) ;
	}
	d.write('\n') ;
}
var archives= new Array (
//begin
"nostromo/gb","M-.-n's Gameboy DiscoDirt","040604","it\'s always 10pm - the 10pm clock",
"031110","ip ip ip oura",
"030711","kuleshov sonic effect test serie",
"030521","Landscape thriller version",
"030206","we care about the world",
"030110","frozen",
"020731","communication - level 1",
"020610","head upside down - balls downside up",
"020424","Hot wheels - vol. VIII - un joyeux jour des oiseaux ",
"020415","the invasion of the body snatchers",
"020327","so simple as that",
"020306","sur les affiches les femmes",
"020205","stock exchange",
"011219","frgmnttn [rm:xed]",
"011206","frgmnttn",
"010924","Cold war",
"010807","Glamour0us jobs",
"010716","Tiger COOkie",
"010522","landscape 02",
"010508","squaredance",
"010411","Business class recordingS",
"010328","worker in the outside world",
"010306","landscape01-2",
"010305","knockout kings",
"010214","landscape01",
"010125","one is turned down",
"010123","perfect setting",
"010104","yum yum",
"001228","edmund dorf",
"001214","this is a 10pm business comicstrip",
"001130","shortly after takeoff",
"001123","hot wheels VII - go karts !",
"001116","playing Win95/98/NT/2000",
"001110","electric",
"001101","Let s bomb!",
"000922","engadine s party string music",
"000915","k f with internet explorer",
"000829","thr33 fr1sc0 w0rds",
"000806","eKung-fu",
"000713","hot wheels VI",
"000629","Cubana Cigar",
"000622","hot wheels V",
"000617","summer glory",
"000607","meet the dragon",
"000525","10pm vs kernell panik",
"000515","10pm6strngs",
"000427","let world filled with love",
"000420","10pm bussiness class",
"000413","dragon in your mind",
"000403","ola",
"000316","sound&vision 2",
"000309","hot wheels vol. IV",
"000221","cloning elvis",
"000127","drive blind",
"000120","indian instruments",
"000113","sound&vision 1",
"000106","hot wheels vol. III",
"991216","eyes wide open",
"991209","electronic information kung-fu II",
"991202","saturday afternoon fever",
"991125","3Dnow!",
"991111","ascmii",
"991104","granuLab",
"991028","e rapper",
"991021","hot wheels vol. II",
"991014","micromodular",
"991007","VU",
"990930","ophtonic",
"990923","towed",
"990916","Georges the V",
"990909","bitume(n)99",
"990902","vocoder poetry",
"990826","sanitary agreement",
"990819","stefano ricci",
"990812","mr bungle",
"990805","sommerbad, berlin",
"990729","hot wheels",
"990722","M-.-n down under",
"990715","box office poison",
"990708","great tricks",
"990702","electronic information kung-fu",
"990625","domain name"
//end
)

var archivesCount=archives.length/2 ;
