function display_image(caption, image)
{
	PreView = window.open("", "Preview", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,copyhistory=0,width=10,height=10");
	PreView.document.open();
	PreView.document.write("<HTML>");
	PreView.document.write("<HEAD><TITLE>Preview</TITLE></HEAD>");
	PreView.document.write("<BODY BGCOLOR=FFFFFF TEXT=000000 onLoad='if (document.all || document.layers) window.resizeTo(document.images[0].width+100, document.images[0].height - 0 + 150)'>");	
	PreView.document.write("<FORM><CENTER><B><FONT SIZE=+1>" + caption + "</FONT></B><HR>");
	PreView.document.write("<IMG HSPACE=0 VSPACE=0 " + "SRC='" + image + "'>");
	PreView.document.write("<HR><INPUT TYPE='button' VALUE='Close' " + "onClick='window.close()'></FORM>");
	PreView.document.write("</CENTER>");
	PreView.document.write("</BODY></HTML>");
	PreView.document.close();
}

function PlayFlyby()
{
	Flyby.src="./image/propp_flyby.wav";
}