if (document.body && document.body.offsetWidth) {
 winW = document.body.offsetWidth;
}
if (document.compatMode=='CSS1Compat' &&
    document.documentElement &&
    document.documentElement.offsetWidth ) {
 winW = document.documentElement.offsetWidth;
}
if (window.innerWidth && window.innerHeight) {
 winW = window.innerWidth;
}
// Reduce image sizes if window is small
reswidth = Math.round(0.95*winW);
//document.write(reswidth)
if(reswidth < 1225) {
image1_width = Math.round(0.33*reswidth);
image2_width = Math.round(0.63*reswidth);
image_height = Math.round(185*reswidth/1225);
//document.write("small")
}
// Keep default image sizes if window is large
else {
image1_width = 400;
image2_width = 750;
image_height = 185;
//document.write("Large")
}
var image1 = '<img src="http://www.sirbarneswallis.com/graphics/WallisHeaderImage.gif" align="left" height="' + image_height + '" width="' + image1_width + '">';
var image2 = '<img src="http://www.sirbarneswallis.com/graphics/WallisHeaderText.gif" align="center" height="' + image_height + '" width="' + image2_width + '">';
document.write(image1+image2);
