<!--

function popit(RelImagePath) {
	popitWindow = window.open('','popitWindow','width=360,height=240,resizable=yes,scrollbars=no,toolbar=no,directories=no,status=no');
	RelImagePath += ''; /* coerce to a string */
	start = RelImagePath.lastIndexOf('/');
	str = '';
	if (start != -1) { /* then we have an image */
		str = RelImagePath.substring( start + 1 , RelImagePath.length - 4 ); /* remove dir and extension */
		str1 = str.substring(0, str.indexOf('_')); /* get first name */
		str2 = str.substring(str.indexOf('_') + 1, str.length); /* get last name */
		str = str1 + ' ' + str2;
	}
	popitWindow.document.writeln('<html><head><title>' + str + '</title>');
	popitWindow.document.writeln('<LINK REL=stylesheet HREF="../styles/default.css" TYPE="text/css">');
	popitWindow.document.writeln('<style>p {font: 12pt Arial, Helvetica, sans-serif; color: white; font-weight: 1000; }</style></head>');
	popitWindow.document.writeln('<body color=#ffffff bgcolor=#9b9067 topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 onLoad="self.focus();">');
	popitWindow.document.writeln('<center>');
	if (RelImagePath != '')
		popitWindow.document.writeln('<img src="' + RelImagePath + '" alt="" border="1">');
	else popitWindow.document.writeln('<center><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Sorry, no image available.</p></center>');
	popitWindow.document.writeln('</center></body></html>');
	popitWindow.document.close();
}
function popit2(RelImagePath) {
	popitWindow = window.open('','popitWindow','width=240,height=360,resizable=yes,scrollbars=no,toolbar=no,directories=no,status=no');
	RelImagePath += ''; /* coerce to a string */
	start = RelImagePath.lastIndexOf('/');
	str = '';
	if (start != -1) { /* then we have an image */
		str = RelImagePath.substring( start + 1 , RelImagePath.length - 4 ); /* remove dir and extension */
		str1 = str.substring(0, str.indexOf('_')); /* get first name */
		str2 = str.substring(str.indexOf('_') + 1, str.length); /* get last name */
		str = str1 + ' ' + str2;
	}
	popitWindow.document.writeln('<html><head><title>' + str + '</title>');
	popitWindow.document.writeln('<style>p {font: 12pt Arial, Helvetica, sans-serif; color: white; font-weight: 1000; }</style></head>');
	popitWindow.document.writeln('<body color=#ffffff bgcolor=#000000 topmargin=0 leftmargin=0 marginheight=0 marginwidth=0 onLoad="self.focus();">');
	popitWindow.document.writeln('<div style="position: absolute; top: 0px; left: 0px; width: 240px;"><form>');
	if (RelImagePath != '')
		popitWindow.document.writeln('<img src="' + RelImagePath + '" alt="" border="0">');
	else popitWindow.document.writeln('<center><p>&nbsp;</p><p>&nbsp;</p><p>&nbsp;</p><p>Sorry, no image available.</p></center>');
	popitWindow.document.writeln('<center><input type=button value="   Close   " onClick="window.close();"></center></form>');
	popitWindow.document.writeln('</div></body></html>');
	popitWindow.document.close();
}
// -->