function showPopup(callbackFunc,selected) {
  s = '';
  s += '<style>';
  s += '  #formDiv {';
  s += '   background-color: #D9E8D7;';
  s += '   color: #33532F;';
  s += '   border: 1px solid #33532F;';
  s += '   padding: 12px 6px 0px 6px;';
  s += '   font-family: Tahoma, Helvetica, sans-serif;';
  s += '   font-size: 9pt; ';
  s += '   text-align: center; ';
  s += '  }';
  s += '</style>';
  s += '';
  s += '<div id="formDiv">';
  s += '  <strong>Birthday Greeting</strong><br /><br />';
  s += '  <form name="newGreetForm" id="newGreetForm" method="post">';
  s += '  Name: <input type="text" name="a_name" id="a_name" size="40"><br>';
  s += '  E-mail: <input type="text" name="a_email" id="a_email" size="40"><br>';  
  s += '  Contact: <input type="text" name="a_contact" id="a_contact" size="40"><br>';    
  s += '  Greeting Selected: <span id="a_type"></span><br>';
  s += '  <input type="submit" name="btnSave" id="btnSave" value="Show Cart"><input type="button" name="btnCancel" id="btnCancel" value="Cancel">';
  s += '  </form>';
  s += '</div>';
  s += '';
  s += '<script type="text/javascript">';
  s += '  var types=new Array("Fake","Full Page Birthday Greeting","Half Page Birthday Greeting","Quarter Page Birthday Greeting","Business Card Birthday Greeting","Back Cover","Inside Left Front Cover","Inside Right Front Cover","Inside Back Right Cover","Inside Back Left Cover"); ';
  s += '  var type = types['+selected+']; ';
  s += '  $("#a_type").html(type); ';
  s += '  formInfo = "";';
  s += '  $("#btnCancel").click(function(){';
  s += '    returnResponse("Cancelled");';
  s += '  });';
  s += '  $("#newGreetForm").submit(function(){';
  s += '    formInfo = new Object;';
  s += '    formInfo.type = type; ';
  s += '    formInfo.name = $("#a_name").val();';
  s += '    formInfo.email = $("#a_email").val();';
  s += '    formInfo.contact = $("#a_contact").val();';
  s += '    returnResponse(formInfo);';
  s += '  });';
  s += '  function returnResponse(fI){';
  s += '    $("#formDiv").remove();';
  s += '    ' + callbackFunc + '(fI);';
  s += '  }';
  s += '</script>';
  jQuery.facebox(s);
}
