function init(){
	document.writeln('<table border=0 cellpadding=0 cellspacing=0>');
	document.writeln('<tr valign=top>');
}
function addTitle(name) {
	document.writeln('<td colspan=3><span class="title">'+name+'</span><br><br></td>');
	document.writeln('</tr><tr valign=top>');
}
function addOrigImage(img) {
	if (img) document.writeln('<td><img src="images/'+img+'" width=90 height=125></td><td><img src="../images/blank.gif" width=15 height=1></td><td>');
	else document.writeln('<td colspan=3>');
}
function addImage(img) {
	if (img) document.writeln('<td><img src="images/'+img+'" width=89 height=125></td><td><img src="../images/blank.gif" width=15 height=1></td><td>');
	else document.writeln('<td colspan=3>');
}
function addBio(text) {
	if (text) document.write('<p>'+text+'</p>');
}
function addEmail(email) {
	if (email) document.writeln('<A HREF="mailto:'+email+'">'+email+'</A><br>');
}
function addPage(link) {
	if (link) document.writeln('<A HREF="'+link+'">Personal Page</A><br>');
}
function close() {
	document.writeln('</td></tr></table>');
}