// This either displays an jpeg image or an applet that gives a 3D globe view
// of the image. Which occurs is determined by <blah blah>

{
    var width, height;
    if(myimgsize =="small") {
	width = 500;
	height = 325;
    } else {
	width = 820;
	height = 510;
    }
    document.write('<img src="img' + myimgsize + '/loading_image.jpg" border="0" width="' + width + '" height="' + height + '" alt="Image of MISR Level 3 Data" title="Image of MISR Level 3 Data" name="dataimg">');
}
