function writeImageLink(name,orientation,caption) {
	document.write ("<a href=\"javascript:showpic(\'");

	document.write ("photos/" + name + ".jpg\', ");

	if (orientation=="H") {
		document.write ("450, 300");
		var imgwide=90;
		var imgtall=60;
	}

	if (orientation == "V") {
		document.write ("300, 450");
		var imgwide=60;
		var imgtall=90;
	}

	document.write (")\" Class=PhotoLink>");
	document.writeln("<img src=\"buttons/" + name + ".jpg\" border=0 width=" + imgwide + " height=" + imgtall + "><br>" + caption + "</a>");
}

function showpic(picture , wwidth , wheight) {
var x = wwidth + 20
var y = wheight + 30
		popupWin=window.open ( picture , 'remote', "left=10,top=10,width=" + x + ",height=" + y );
}

function writeperson(position , name , email) {
document.writeln ("<tr valign=\"middle\"><td align=\"right\" width=170><b>");
document.write ( position + "</b></td><td width=120>" + name );
document.writeln ("</td><td align=\"right\"><a href=\"mailto:" + email + "\" class=\"PageLink\">" + email + " </a></td></tr>");
}