

<!--

var d,psWindow=null;
var img;

function GetImage(source)
{
img = new Image();
img.src= source;
}
function DetailWindow(theNote,theMedium,theTitle,theImage,imgW,imgH,mode){var BodyColor="#000000";var TextColor="#FFFFF0";
var TableBack="#222222";
var TableW,k;

GetImage(theImage);

/*Homes			0Land			1Portrait		2Reproduction	3Books			4Illustration	5*/switch (mode){case 0: BodyColor='#222222';
 TableBack='#333333'; TextColor='#FFFFF0'; break;case 1: BodyColor='#222F2F';
 TableBack='#333F3F'; TextColor='#FFFFF0'; break;case 2: BodyColor='#270101';
 TableBack='#381212'; TextColor='#FFFFF0'; break;case 3: BodyColor='#221F22';
 TableBack='#221F22'; TextColor='#FFFFF0'; break;case 4: BodyColor='#111122';
 TableBack='#222233'; TextColor='#FFFFF0'; break;case 5: BodyColor='#1F1122';
 TableBack='#2F2233'; TextColor='#FFFFF0'; break;}

imgW+=100;
imgH+=280;	psWindow = window.open('','Detail','menubar=no,status=no,toolbar=no,directories=no,location=no,scrollbars=yes,resizable=yes,height='+imgH+', width='+imgW+"'");
d=psWindow.document;
d.writeln("<HTML><HEAD><TITLE>"+theTitle+"</TITLE>");

d.writeln("<style type='text/css'>");
d.writeln("body {background-color: "+BodyColor+";color:"+TextColor+";font-family: Arial, Helvetica, sans-serif;font-size:100%;line-height:1.4em;}");
d.writeln("</style>");

d.writeln("<style type='text/css'>");
d.writeln("table {background-color: "+TableBack+";padding:5px;border-spacing:5pt;color:"+TextColor+";font-family:Arial,sans-serif;font-size:140%;}");
d.writeln("</style>");

d.writeln("<style type='text/css'>");if(mode == 4) d.writeln("img.imgborder {border-width: 0px;border-color: #FFFFFF;border-style:solid;border-collapse:collapse;}");else d.writeln("img.imgborder {border-width: 5px;border-color: #FFFFFF;border-style:solid;border-collapse:collapse;}");
 d.writeln("</style>");


d.writeln("</HEAD><body>");
d.writeln("<br>");

d.writeln("<DIV align=center>");
d.writeln("<table id='TT' summary='LargeImage' border = '0'><tr align='center' valign='center'><td>");
d.writeln("<span class='imgborder'><IMG name='pop' src='"+theImage+"'></span>");
d.writeln("</td></tr>");
d.writeln("<tr align='center' valign='bottom'><td height='35'><span style='font-weight:bold;'>"+theTitle+"</span></td></tr>");d.writeln("<tr align='center' valign='center'><td height='25'><hr size='1' width = '80%'><span style='font-size:0.6em;'><I>"+theMedium+"</I> "+theNote+"</span></td></tr>");d.writeln("<tr align='center' valign='bottom'><td height='15'></td></tr>");
d.writeln("<tr align='center' valign='bottom'><td height='30'><FORM><INPUT TYPE='BUTTON' VALUE='Close Window' onClick='window.close()'></FORM></td></tr>");
d.writeln("<tr align='center' valign='center'><td height='20'><span style='font-size:0.5em;'><I>Cecilia Brendel &copy 2010</I></span></td></tr>");
d.writeln("</table>");
d.writeln("</DIV>");d.writeln("</BODY ></HTML>"); d.close();


}// -->