
var  pic = "";

var smallPic  ='<img src="pics/Crane/crane0073S300x116.jpg" width="200" height="77"  alt="Crane Moves Tree" />';
var middlePic ='<img src="pics/Crane/crane0073S300x116.jpg" width="300" height="116" alt="Crane Moves Tree" />';
var largePic  ='<img src="pics/Crane/crane0073S350x116.jpg" width="350" height="116" alt="Crane Moves Tree" />';
var bigPic    ='<img src="pics/Crane/crane0073S400x116.jpg" width="400" height="116" alt="Crane Moves Tree" />';

var sw = screen.width;

if (sw > 1280)
  pic = bigPic
else if (sw > 1054)
  pic = largePic
else if (sw > 800)
  pic = middlePic
else
  pic = smallPic;

document.write(pic);



