<!--


function fly(url, popupwidth, popupheight, popupscroll, popupresize) {
  if (popupwidth == null) {
		popupwidth = 50;
  }
  if (popupheight == null) {
		popupheight = 50;
  }
  
  var prefs = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=" + popupscroll + ",resizable=" + popupresize + ",width=" + popupwidth + ",height=" + popupheight + ",top=50,left=50";
  window.open(url,'popup',prefs);
}

function adapt (note) {
  if (note == null) {
	  note = 0;
  }
var image = document.images.shot;
window.resizeTo(image.width + 100,image.height + 60 + note);
if(document.body && document.body.clientWidth)
window.resizeBy(
image.width + 100 - document.body.clientWidth,
image.height + 60 + note - document.body.clientHeight
)
}


//-->

