<!---
v1.style.pixelLeft=25
v3.style.pixelLeft=175
window2 = null

function flight() {
 v1.style.pixelTop -=5
 v3.style.pixelTop -=4
 if (v1.style.pixelTop==-300) {
  v1.style.pixelTop=250
  v3.style.pixelTop=250
 }
 else {
  setTimeout("flight()",100)
 }
}
function displayImage(name,title,width,height) {
 iwidth = width-16
 width = parseInt(width) + 2
 if (iwidth < 1) iwidth = 1
 if (window2 && !window2.closed) {window2.close()}
 
 window2=window.open(name,'window2','width='+width+',height='+height+',top=0,left=0,scrollbars=1,resizable=1,channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,status=0,toolbar=0')
 window2.document.writeln("<html><head><title>" + title + "</title></head>")
 window2.document.writeln("<body topmargin='0' leftmargin='0'>")
 window2.document.writeln("<img src='" + name + "' width='" + iwidth + "' height='" + height + "'")
 window2.document.writeln(" alt='Click anywhere on picture to close' onClick='window.close()'>")
 window2.document.writeln("</body></html>")
}
//--->
