function last(a,mode){
  var Last=[
	"allaboutcokks.com:MARCH 10, 2005",
	"fukfrce5.com:NOVEMBER 12, 1998",
	"amatourbiatch.com:MAY 20, 2005"
  ];

  if (mode==1){
	ret='';
	for (i=0;i<Last.length;i++){
		lc=Last[i].toLowerCase();
		if (lc.indexOf(a.toLowerCase())==0){
			sp=Last[i].split(':',2);
			ret=sp[1]; break;
		}
	}
	if (ret=='') ret='MARCH 16, 2005';
	return(ret);
  }
  var d=new Date();
  var mN=['JANUARY','FEBRUARY','MARCH','APRIL','MAY','JUNE','JULY','AUGUST','SEPTEMBER',
	'OCTOBER','NOVEMBER','DECEMBER'];
  ret=mN[d.getMonth()]+" "+d.getDate()+", "+(2000+d.getYear()%100);
  return(ret);
}

function plot(site){
  if (typeof compAddr!='string')
	compAddr=
		"K. Harrower<br>"+
		"Custodian of Records <br>"+
		"Defiance Films, Inc. <br>"+
		"5146 Douglas Fir Rd. <br>"+
		"Calabasas, CA 91302"
	

  var o="This online Website titled Defiancefilms.com and Defiancefilms.net was " +
		"originally produced as of March 10, 2005 and is a continuously ongoing " +
		"and changing production the most recent iteration of which is dated " +
		last(site,2)+" <br> " +
		"The records required pursuant to 18 U.S.C. section 2257 and 28 C.F.R. 75 " +
		"for materials contained in the Website are kept by the custodian of " +
		"records as follows at: <p>"+compAddr+ 
		" <p> " ;
  document.write(o);
  
}

