function openPictureWindow_Fever(imageName,imageWidth,imageHeight,alt,fpb) {  // v4.01
if (document.getElementById) {
	if (imageWidth < 310) {
		var winWidth = 360;
	} else {
		var winWidth = imageWidth + 30;
	}
	if (!alt) {
		var winHeight = imageHeight + 20;
	} else {
		var winHeight = imageHeight + 40;
	}
	newWindow = window.open("","newWindow","width="+winWidth+",height="+winHeight+",scrollbars=no,left=0,top=0");
	newWindow.document.open();
	newWindow.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">\n');
	newWindow.document.write('<html xmlns="http://www.w3.org/1999/xhtml">\n');
	newWindow.document.write('<head>\n');
	newWindow.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />\n');
	newWindow.document.write('<title>'+alt+'</title>\n');
	newWindow.document.write('<link href="/css/pictures.css" rel="stylesheet" type="text/css" />\n');
	newWindow.document.write('</head>\n');
	newWindow.document.write('<body onBlur="self.close()">\n'); 
	newWindow.document.write('<div id="wrap">\n');
	newWindow.document.write('<p>');
	if(fpb) {
		newWindow.document.write('<span>Photo courtesy of '+fpb+'</span>');
	}
	newWindow.document.write('<img src="'+imageName+'" width="'+imageWidth+'" height="'+imageHeight+'" alt="'+alt+'" /></p>\n');
	if (alt) {
		newWindow.document.write('<p>'+alt+'</p>\n');
	}
	newWindow.document.write('</div>\n');
	newWindow.document.write('</body>\n');
	newWindow.document.write('</html>\n');
	newWindow.document.close();
	newWindow.focus();
  return false;
 } else {
  return true;
 }
}
function btopLink() {
  var myWHeight = 0, myHeight = 0;
  if( typeof( window.innerHeight ) == 'number' ) {
    //Non-IE
    myWHeight = window.innerHeight;
    myHeight = document.body.clientHeight;
  } else if( document.documentElement && document.documentElement.clientHeight ) {
    //IE 6+ in 'standards compliant mode'
    myWHeight = document.documentElement.clientHeight;
    myHeight = document.body.clientHeight;
  } else if( document.body && document.body.clientHeight ) {
    //IE 4 compatible
    myWHeight = document.body.clientHeight;
    myHeight = document.documentElement.clientHeight;
  }
  if ((myHeight-30) > myWHeight) {
  	document.write('<a href="' + location.href + '">back to top</a>\n');
  }
  //window.alert( 'Window Height = ' + myWHeight + ' Doc Height = ' + myHeight );
}