var browser=navigator.appName;
if(browser=="Netscape"){
var width=self.window.innerWidth;
var nWidth=(width*.16);
var dWidth=(nWidth - 50);
var zHeight=(dWidth*1.25);
var nHeight=(zHeight-15);
var rHeight=(zHeight + 26);
var  div = '	<div style="width: auto; height:"'+ rHeight +'"px; text-align: center; margin-bottom: 1px; margin-left:6%">'
     div += '<div style="display: block; margin-left:8%">'
		 div += '<img src="./images/horowitz1.jpg" width="'+ dWidth +'" height="'+ nHeight +'" hspace="25%" border="0" align="middle" alt="Paul Horowitz photograph" />'
		 div += '</div>'
		 div += '</div>'					
	 document.write(div);		
	 }		
else {
var width=self.document.body.clientWidth;
var nWidth=(width*.16);
var dWidth=(nWidth - 50);
var zHeight=(dWidth*1.25);
var nHeight=(zHeight-10);
var rHeight=(zHeight + 10);

 var  div = '	<div style="width: 100%; height:"'+ rHeight +'"px; text-align: center; margin-bottom: 1px;margin-left:6%">'
     div += '<div style="display: block; margin-left:8%">'
		 div += '<img src="./images/horowitz1.jpg" width="'+ dWidth +'" height="'+ nHeight +'" hspace="25%" border="0" align="middle" alt="Paul Horowitz photograph" />'
		 div += '</div>'
		 div += '</div>'					
	 document.write(div);
	 }