jcbook = 3;
jcba   = 2;
usa    = 0;
jccenter=1;
jcpub  =4;
month	=	new	Array('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');
function endnote(doc,opt)	{
	var	lastMod	=	new	Date(doc.lastModified)
	var	yr = lastMod.getYear()
	var	dt = lastMod.getDate()
	var	name=	doc.location;
	var	len= endnote.arguments.length;
	if(yr<1900)	yr+=1900
	l0 = '<tr><td	nowrap align=center	height=8><font class=note>'
	l1 = '</font></td></tr>'
	m	 = lastMod.getMonth()+1;
	note = '<p><br><table	align=center width=100%><tr><td><hr	width=350></td></tr>'
	if(len==1) opt=0;
	if(opt!=-1)	{
		if(opt==0) text='Jen Chen	Buddhism Northridge	Mission, U.S.A.';
		if(opt==1) text='Jen Chen	Buddhism Centre, Singapore';
		if(opt==4) text='Jen Chen	Buddhist Book	Publisher, Singapore';
		if(opt==2) text='<img src=../img/r_jcba.gif border=0><br>Jen Chen	Buddhism Association,	Taiwan'; 
		if(opt==3) text='<img src=../img/r_jcbook.gif border=0><br>Jen Chen	Buddhism Book	Publisher, Taiwan';
		if(opt==5) text='<img src=../img/r_bwbmagz.gif border=0><br>Be With Buddha Magazine, Taiwan';
		note+= l0+'&copy; Copyright 2002-'+yr+', All rights reserved.'+l1;
		note+= l0+text+l1;
		note+= l0+month[m-1]+' '+dt+', '+yr+l1;
	}	else {
		note+= l0+'<font color=red><b>Recently Updated on	'+month[m-1]+' '+dt+', '+yr+'</b></font>'+l1;
	}
	note+= '<tr><td><hr	width=350></td></tr>'
	//note+= '<tr><td	align=center><font color=#cccccc class=note>'+name+'</td></tr>';
	note+= '</table></center>'
	doc.write(note);
}

function headnote(doc,title,author,ref)	{
	var	len	=	headnote.arguments.length;
	note ='<table	align=center valign=top><tbody><tr><td nowrap	align=center>'
	note+='<h1>'+title+'</h1>'
	if(len>=3) note+='<br>'+author
	if(len>=4) note+='<br>'+ref
	note+='</td></tr></tbody></table>'
	note+='<br>'
	doc.write(note);
}

