function enlarge(title,img){
	var x=window.open("","x","width=790,height=370");
	x.document.write("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n");
	x.document.write("<html>\n");
	x.document.write("   <head>\n");
	x.document.write("      <title>\n");
	x.document.write("         "+title+" Floor Plan\n");
	x.document.write("      </title>\n");
	x.document.write("      <link rel=\"STYLESHEET\" type=\"text/css\" href=\"jetClub.css\">\n");
	x.document.write("   </head>\n");
	x.document.write("   <body style=\"margin:0px\">\n");
	x.document.write("      <table width=\"100%\" height=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n");
	x.document.write("         <tr>\n");
	x.document.write("            <td height=\"27\" valign=\"top\">\n");
	x.document.write("               <div class=\"heading1\">\n");
	x.document.write("                  Aircraft Floorplans\n");
	x.document.write("               </div>\n");
	x.document.write("            </td>\n");
	x.document.write("         </tr>\n");
	x.document.write("         <tr>\n");
	x.document.write("            <td height=\"24\" valign=\"top\">\n");
	x.document.write("               <div class=\"heading2\">\n");
	x.document.write("                  "+title+"\n");
	x.document.write("               </div>\n");
	x.document.write("            </td>\n");
	x.document.write("         </tr>\n");
	x.document.write("         <tr>\n");
	x.document.write("            <td align=\"center\">\n");
	x.document.write("               <img src=\"images/fp_l/"+img+"\" alt=\""+title+"\" border=\"0\"> \n");
	x.document.write("            </td>\n");
	x.document.write("         </tr>\n");
	x.document.write("         <tr bgcolor=\"#666666\" height=\"20\">\n");
	x.document.write("            <td align=\"right\">\n");
	x.document.write("               <div id=\"backToTop\">\n");
	x.document.write("                  <a href=\"javascript:this.close()\">Close Window</a>\n");
	x.document.write("               </div>\n");
	x.document.write("            </td>\n");
	x.document.write("         </tr>\n");
	x.document.write("      </table>\n");
	x.document.write("   </body>\n");
	x.document.write("</html>\n");
	x.document.close();
}