//-----------------------------------------------------------------
// Barry Mann Photography
// ----------------------
// Gallery images
// Created:   10 February 2006
// Copyright: George Mann Publications 2006 ~ post@gmp.co.uk
//-----------------------------------------------------------------
//
//------------------------------------------
// SHOWAPPLICATION: Show application bullets
//------------------------------------------
function showapplication (applicationid) {

  startindex = 0;

  for (i = 1; i < (applications[0] + 1); i++) {

    if (applications[i].substr(0,2) == applicationid) {
      startindex = i;
      break;
    }

  }

  codehtml = "<table border=0 cellpadding=1 cellspacing=0><tr><td height=5></td></tr>";
 
  for (i = startindex; i < 50; i++) {

    entry = applications[i].split('/');

    if (entry[0] == 9999) {
      codehtml = codehtml + "</table>";
      document.write(codehtml)
      break;
    }

    codehtml = codehtml + "<tr valign=top><td><img src=images/bullet3.jpg></td><td class=text>" + entry[1] + "</td></tr>";

  }

}