<!--
var myWidth = 0, myHeight = 0;

function displayMarginPix()
{
  var screenwidth = screen.width;
	
	alertSize();

  if (screenwidth > 1024)
  {
  	document.write('<div><img style="position: relative; top:10px; left: -490px;" src="/images/bw_buzzo2.jpg"/></div>');
  	document.write('<div><img style="position: relative; top:-240px; right: -490px;" src="/images/bw_boots2.jpg"/></div>');
  	document.write('<div><img style="position: relative; top:-220px; left: -490px;" src="/images/bob_margin_200.jpg"/></div>');
  	document.write('<div><img style="position: relative; top:-450px; right: -490px;" src="/images/bw_chic2.jpg"/></div>');
  }
else
	{
  	document.write('<div><img style="position: relative; top: 10px; left: -435px;" src="/images/bwt_buzzo2.jpg"/></div>');
  	document.write('<div><img style="position: relative; top: -245px; right: -435px;" src="/images/bwt_boots2.jpg"/></div>');
  	document.write('<div><img style="position: relative; top: -225px; left: -435px;" src="/images/bob_margin_107.jpg"/></div>');
  	document.write('<div><img style="position: relative; top: -465px; right: -435px;" src="/images/bwt_chic2.jpg"/></div>');
	}
	
}	

function alertSize() {
  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;
  }
  //window.alert( 'Width = ' + myWidth );
  //window.alert( 'Height = ' + myHeight );
}


-->
