var myWidth = 0, myHeight = 0;
if( typeof( window.innerWidth ) == 'number' ) {
  //Non-IE
  myWidth = window.innerWidth;
  myHeight = window.innerHeight;
} else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
  //IE 6+ in 'standards compliant mode'
  myWidth = document.documentElement.clientWidth;
  myHeight = document.documentElement.clientHeight;
} else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
  //IE 4 compatible
  myWidth = document.body.clientWidth;
  myHeight = document.body.clientHeight;
}
if (myWidth > 1300) {
	document.write('<style><!-- @import url(/css/band.css); --></style>'
	+ '<div class="NarrativeBandSmallRight"><img src="/images/SSNL_conference_ad.gif" width="164" height="164" border="0" usemap="#NarrativeLinkMapSmallRight"></div>'
	+ '<map name="NarrativeLinkMapSmallRight"><area shape="poly" coords="0,0,164,164,164,164,164,0" href="http://www.case.edu/narrative/index.html" target="_blank"></map>'
	);
}
else
{
	document.write('<style><!-- @import url(/css/band.css); --></style>'
	+ '<div class="NarrativeBandSmallBanner"><img src="/images/SSNL_conference_ad_small.gif" width="105" height="105" border="0" usemap="#NarrativeLinkMapSmallRight"></div>'
	+ '<map name="NarrativeLinkMapSmallRight"><area shape="poly" coords="0,0,105,105,105,105,105,0" href="http://www.case.edu/narrative/index.html" target="_blank"></map>'
	);
}